from "module" import x

Note that IDE are free to do snippet insertion. Eg, writting "import " inserts:

import [ ] from "[|]";
//                ^ Insertion pointer here
//      ^ Press Tab to jump to this location

That would allow you to write the module path first, then the imports can be auto-completed while you type in the import specifiers.

4 Likes