I have this String literal type example ``` javascript type TStyles = 'x' | 'y' | 'z'; ``` Using IntelliSense for completion this code will be awesome: ``` javascript var style:TStyles = '>>> I want to use [CTRL+J] here to offer only valid TStyles values <<<'; ```