UNPKG

ts-simple-ast

Version:

TypeScript compiler wrapper for AST navigation and code generation.

8 lines (7 loc) 366 B
import * as ts from "typescript"; import { Node } from "./../common"; import { TextInsertableNode } from "./../base"; import { StatementedNode } from "./StatementedNode"; export declare const BlockBase: (new (...args: any[]) => TextInsertableNode) & (new (...args: any[]) => StatementedNode) & typeof Node; export declare class Block extends BlockBase<ts.Block> { }