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