File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
tests/baselines/reference/api Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -5043,7 +5043,7 @@ export interface TypeChecker {
5043
5043
isUndefinedSymbol ( symbol : Symbol ) : boolean ;
5044
5044
isArgumentsSymbol ( symbol : Symbol ) : boolean ;
5045
5045
isUnknownSymbol ( symbol : Symbol ) : boolean ;
5046
- /** @internal */ getMergedSymbol ( symbol : Symbol ) : Symbol ;
5046
+ getMergedSymbol ( symbol : Symbol ) : Symbol ;
5047
5047
5048
5048
getConstantValue ( node : EnumMember | PropertyAccessExpression | ElementAccessExpression ) : string | number | undefined ;
5049
5049
isValidPropertyAccess ( node : PropertyAccessExpression | QualifiedName | ImportTypeNode , propertyName : string ) : boolean ;
Original file line number Diff line number Diff line change @@ -6778,6 +6778,7 @@ declare namespace ts {
6778
6778
isUndefinedSymbol(symbol: Symbol): boolean;
6779
6779
isArgumentsSymbol(symbol: Symbol): boolean;
6780
6780
isUnknownSymbol(symbol: Symbol): boolean;
6781
+ getMergedSymbol(symbol: Symbol): Symbol;
6781
6782
getConstantValue(node: EnumMember | PropertyAccessExpression | ElementAccessExpression): string | number | undefined;
6782
6783
isValidPropertyAccess(node: PropertyAccessExpression | QualifiedName | ImportTypeNode, propertyName: string): boolean;
6783
6784
/** Follow all aliases to get the original symbol. */
You can’t perform that action at this time.
0 commit comments