@ts-ast-parser/core
Version:
Reflects a simplified version of the TypeScript AST for generating documentation
19 lines • 480 B
JavaScript
/**
* The kind of top level reflected nodes in a module
*/
export var RootNodeType;
(function (RootNodeType) {
/**
* Import declarations
*/
RootNodeType["Import"] = "Import";
/**
* Class, Interface, Function, Type Alias, Enum declarations
*/
RootNodeType["Declaration"] = "Declaration";
/**
* Export declarations
*/
RootNodeType["Export"] = "Export";
})(RootNodeType || (RootNodeType = {}));
//# sourceMappingURL=node.js.map