export default f(1, 2, 3); // anonymous export export let foo = 5; // named declaration export export // named export of existing identifier export ; // named export of multiple existing identifiers export ; // named aliasing export export ; // you get the idea import glob from "glob"; // anonymous import import from "glob"; // named import import from "glob"; // named aliasing import import "fs" as fs; // import of module instance object, not anonymous module