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.
I have TS code that imports some types from a single file: import {TypeA,TypeB,TypeC} from './file';
import {TypeA,TypeB,TypeC} from './file';
It would be nice to import of all exported types from a file with a star syntax, eg: import {*} from './file';
import {*} from './file';