ts-simple-ast
Version:
TypeScript compiler wrapper for AST navigation and code generation.
11 lines (10 loc) • 613 B
TypeScript
import { NamedNodeStructure, DocumentationableNodeStructure, AmbientableNodeStructure, ExportableNodeStructure, BodiedNodeStructure } from "./../base";
import { StatementedNodeStructure } from "./../statement";
export interface NamespaceDeclarationStructure extends NamedNodeStructure, NamespaceDeclarationSpecificStructure, DocumentationableNodeStructure, AmbientableNodeStructure, ExportableNodeStructure, StatementedNodeStructure, BodiedNodeStructure {
}
export interface NamespaceDeclarationSpecificStructure {
/**
* If the namespace has the module keyword.
*/
hasModuleKeyword?: boolean;
}