File tree 3 files changed +5
-1
lines changed
tests/baselines/reference/api
3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -4219,7 +4219,7 @@ namespace ts {
4219
4219
/** Follow all aliases to get the original symbol. */
4220
4220
getAliasedSymbol ( symbol : Symbol ) : Symbol ;
4221
4221
/** Follow a *single* alias to get the immediately aliased symbol. */
4222
- /* @internal */ getImmediateAliasedSymbol ( symbol : Symbol ) : Symbol | undefined ;
4222
+ getImmediateAliasedSymbol ( symbol : Symbol ) : Symbol | undefined ;
4223
4223
getExportsOfModule ( moduleSymbol : Symbol ) : Symbol [ ] ;
4224
4224
/** Unlike `getExportsOfModule`, this includes properties of an `export =` value. */
4225
4225
/* @internal */ getExportsAndPropertiesOfModule ( moduleSymbol : Symbol ) : Symbol [ ] ;
Original file line number Diff line number Diff line change @@ -2272,6 +2272,8 @@ declare namespace ts {
2272
2272
isValidPropertyAccess(node: PropertyAccessExpression | QualifiedName | ImportTypeNode, propertyName: string): boolean;
2273
2273
/** Follow all aliases to get the original symbol. */
2274
2274
getAliasedSymbol(symbol: Symbol): Symbol;
2275
+ /** Follow a *single* alias to get the immediately aliased symbol. */
2276
+ getImmediateAliasedSymbol(symbol: Symbol): Symbol | undefined;
2275
2277
getExportsOfModule(moduleSymbol: Symbol): Symbol[];
2276
2278
getJsxIntrinsicTagNamesAt(location: Node): Symbol[];
2277
2279
isOptionalParameter(node: ParameterDeclaration): boolean;
Original file line number Diff line number Diff line change @@ -2272,6 +2272,8 @@ declare namespace ts {
2272
2272
isValidPropertyAccess ( node : PropertyAccessExpression | QualifiedName | ImportTypeNode , propertyName : string ) : boolean ;
2273
2273
/** Follow all aliases to get the original symbol. */
2274
2274
getAliasedSymbol ( symbol : Symbol ) : Symbol ;
2275
+ /** Follow a *single* alias to get the immediately aliased symbol. */
2276
+ getImmediateAliasedSymbol ( symbol : Symbol ) : Symbol | undefined ;
2275
2277
getExportsOfModule ( moduleSymbol : Symbol ) : Symbol [ ] ;
2276
2278
getJsxIntrinsicTagNamesAt ( location : Node ) : Symbol [ ] ;
2277
2279
isOptionalParameter ( node : ParameterDeclaration ) : boolean ;
You can’t perform that action at this time.
0 commit comments