🚧 Still under progress. Soon will be finished.

ExportKind

ENUM code

Description

The kind of export

Members

Name Value Description
Default 'Default'

Case of export default foo

Namespace 'Namespace'

Case of export * as foo from './foo.js'

Star 'Star'

Case of export * from './foo.js'

Named 'Named'
Equals 'Equals'

Case of export = Foo