Skip to content

ExportKind

ts
export type ExportKind = "normal" | "default" | "none";

WARNING

Not to be used directly.

Representation of the kind of export for a TypeScript item. This type can have three possible values: "normal" for regular exports, "default" for default exports, and "none" for items that are not exported. This information is crucial for understanding how an item is exposed to other modules and how it can be imported elsewhere in the codebase.