@ts-ast-parser/core
Version:
Reflects a simplified version of the TypeScript AST for generating documentation
18 lines • 377 B
TypeScript
/**
* The kind of top level reflected nodes in a module
*/
export declare enum RootNodeType {
/**
* Import declarations
*/
Import = "Import",
/**
* Class, Interface, Function, Type Alias, Enum declarations
*/
Declaration = "Declaration",
/**
* Export declarations
*/
Export = "Export"
}
//# sourceMappingURL=node.d.ts.map