We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't know if this is too much to ask, but it would be nice. 🌷
export interface Config { files: ConfigFiles } export interface ConfigFiles { jspm: string; 'jspm:browser': string; 'jspm:dev': string; 'jspm:node': string; } let configFiles: ConfigFiles; configFile.jspm = '' // autocomplete works configFiles['jspm:dev'] = '' // autocomplete possible? let config: Config; config = { files: { jspm: '' // autocomplete works 'jspm:dev': '' // autocomplete possible? } as Config;
The text was updated successfully, but these errors were encountered:
This is a feature we added in TS 2.0, the first one works as expected, see screenshot, the second is not working but this is a bug, it should.
Sorry, something went wrong.
Nice! Thank. 🌷
No branches or pull requests
Don't know if this is too much to ask, but it would be nice. 🌷
The text was updated successfully, but these errors were encountered: