UNPKG

@ts-ast-parser/core

Version:

Reflects a simplified version of the TypeScript AST for generating documentation

16 lines 449 B
import type { DeclarationKind } from './declaration-kind.js'; import type { PropertyLike } from './property.js'; /** * A variable declaration after being serialized */ export interface VariableDeclaration extends PropertyLike { /** * The type of declaration */ kind: DeclarationKind.Variable; /** * The namespace name where the variable is defined */ namespace?: string; } //# sourceMappingURL=variable.d.ts.map