You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* @internal */mergeId?: number;// Merge id (used to look up merged symbol)
3376
3378
/* @internal */parent?: Symbol;// Parent symbol
3377
3379
/* @internal */exportSymbol?: Symbol;// Exported symbol associated with this symbol
3380
+
/* @internal */nameType?: Type;// Type associated with a late-bound symbol
3378
3381
/* @internal */constEnumOnlyModule?: boolean;// True if module contains only const enums or other modules with only const enums
3379
3382
/* @internal */isReferenced?: SymbolFlags;// True if the symbol is referenced elsewhere. Keeps track of the meaning of a reference in case a symbol is both a type parameter and parameter.
3380
3383
/* @internal */isReplaceableByMethod?: boolean;// Can this Javascript class property be replaced by a method symbol?
originatingImport?: ImportDeclaration|ImportCall;// Import declaration which produced the symbol, present if the symbol is marked as uncallable but had call signatures in `resolveESModuleSymbol`
3411
3414
lateSymbol?: Symbol;// Late-bound symbol for a computed property
3412
-
nameType?: Type;// Type associate with a late-bound or mapped type property symbol's name
0 commit comments