ts-simple-ast
Version:
TypeScript compiler wrapper for AST navigation and code generation.
10 lines (9 loc) • 577 B
TypeScript
import { VariableDeclarationType } from "./../../compiler";
import { DocumentationableNodeStructure, AmbientableNodeStructure, ExportableNodeStructure } from "./../base";
import { VariableDeclarationStructure } from "./VariableDeclarationStructure";
export interface VariableStatementStructure extends VariableStatementSpecificStructure, DocumentationableNodeStructure, AmbientableNodeStructure, ExportableNodeStructure {
}
export interface VariableStatementSpecificStructure {
declarationType?: VariableDeclarationType;
declarations: VariableDeclarationStructure[];
}