UNPKG

ts-simple-ast

Version:

TypeScript compiler wrapper for AST navigation and code generation.

11 lines (10 loc) 325 B
import * as ts from "typescript"; import { DocumentSpan } from "./DocumentSpan"; export declare class ReferenceEntry extends DocumentSpan<ts.ReferenceEntry> { getIsWriteAccess(): boolean; /** * If this is the definition reference. */ getIsDefinition(): boolean; getIsInString(): true | undefined; }