ImportBinding Type
How a value export is bound to its JavaScript module.
Union cases
| Union case |
Description
|
Full Usage:
GlobalName string
Parameters:
string
|
An ambient global (`declare function fetch`): there is no module to import from, so the
name is taken off `globalThis` with `[
|
Full Usage:
ImportDefault
|
|
Full Usage:
ImportFrom(name, specifier)
Parameters:
string
specifier : string
|
An export of an ambient module, under the specifier that module declares. The specifier is the declaration's own rather than the run's runtime package.
|
Full Usage:
ImportNamed string
Parameters:
string
|
|
Instance members
| Instance member |
Description
|
Full Usage:
this.IsGlobalName
Returns: bool
|
|
Full Usage:
this.IsImportDefault
Returns: bool
|
|
Full Usage:
this.IsImportFrom
Returns: bool
|
|
Full Usage:
this.IsImportNamed
Returns: bool
|
|