File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed
tests/baselines/reference/api Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -1824,6 +1824,7 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
18241824 getNumberLiteralType,
18251825 getBigIntType: () => bigintType,
18261826 getBigIntLiteralType,
1827+ getUnknownType: () => unknownType,
18271828 createPromiseType,
18281829 createArrayType,
18291830 getElementTypeOfArrayType,
Original file line number Diff line number Diff line change @@ -5263,6 +5263,7 @@ export interface TypeChecker {
52635263 getBigIntType ( ) : Type ;
52645264 getBigIntLiteralType ( value : PseudoBigInt ) : BigIntLiteralType ;
52655265 getBooleanType ( ) : Type ;
5266+ getUnknownType ( ) : Type ;
52665267 /* eslint-disable @typescript-eslint/unified-signatures */
52675268 /** @internal */
52685269 getFalseType ( fresh ?: boolean ) : Type ;
Original file line number Diff line number Diff line change @@ -6288,6 +6288,7 @@ declare namespace ts {
62886288 getBigIntType(): Type;
62896289 getBigIntLiteralType(value: PseudoBigInt): BigIntLiteralType;
62906290 getBooleanType(): Type;
6291+ getUnknownType(): Type;
62916292 getFalseType(): Type;
62926293 getTrueType(): Type;
62936294 getVoidType(): Type;
You can’t perform that action at this time.
0 commit comments