Use as the name
of a JSImport
to use the default import.
Use as the name
of a JSImport
to use the default import.
The actual value of this constant, the string "default"
, is not
arbitrary. It is the name under which a default export is registered in
the ECMAScript 2015 specification.
Use as the name
of a JSImport
to use a namespace import.
Use as the name
of a JSImport
to use a namespace import.
Intuitively, it corresponds to *
in an ECMAScript import:
import * as AnnotatedObject from <module>