getExportSymbolOfSymbol
If a symbol is a local symbol with an associated exported symbol, returns the exported symbol. Otherwise returns its input. For example, at export type T = number;
: - getSymbolAtLocation
at the location T
will return the exported symbol for T
. - But the result of getSymbolsInScope
will contain the local symbol for T
, not the exported symbol. - Calling getExportSymbolOfSymbol
on that local symbol will return the exported symbol.