UNPKG

ts-simple-ast

Version:

TypeScript compiler wrapper for AST navigation and code generation.

10 lines (9 loc) 301 B
import * as ts from "typescript"; import { Expression } from "./../common"; export declare const BooleanLiteralBase: typeof Expression; export declare class BooleanLiteral extends BooleanLiteralBase<ts.BooleanLiteral> { /** * Gets the literal value. */ getLiteralValue(): boolean; }