UNPKG

ts-simple-ast

Version:

TypeScript compiler wrapper for AST navigation and code generation.

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