ts-simple-ast
Version:
TypeScript compiler wrapper for AST navigation and code generation.
14 lines (13 loc) • 400 B
TypeScript
import * as ts from "typescript";
import { DocumentSpan } from "./DocumentSpan";
import { SymbolDisplayPart } from "./SymbolDisplayPart";
export declare class ImplementationLocation extends DocumentSpan<ts.ImplementationLocation> {
/**
* Gets the kind.
*/
getKind(): ts.ScriptElementKind;
/**
* Gets the display parts.
*/
getDisplayParts(): SymbolDisplayPart[];
}