ts-simple-ast
Version:
TypeScript compiler wrapper for AST navigation and code generation.
17 lines (16 loc) • 322 B
TypeScript
import * as ts from "typescript";
/**
* Symbol display part.
*/
export declare class SymbolDisplayPart {
/** Gets the compiler text span. */
readonly compilerObject: ts.SymbolDisplayPart;
/**
* Gets the text.
*/
getText(): string;
/**
* Gets the kind.
*/
getKind(): string;
}