UNPKG

ts-simple-ast

Version:

TypeScript compiler wrapper for AST navigation and code generation.

15 lines (14 loc) 500 B
import * as ts from "typescript"; import { Node } from "./../common"; import { VariableDeclaration } from "./VariableDeclaration"; import { VariableDeclarationType } from "./VariableDeclarationType"; export declare class VariableDeclarationList extends Node<ts.VariableDeclarationList> { /** * Get the variable declarations. */ getDeclarations(): VariableDeclaration[]; /** * Gets the variable declaration type. */ getDeclarationType(): VariableDeclarationType; }