File tree 3 files changed +3
-0
lines changed
tests/baselines/reference/api
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 {
1824
1824
getNumberLiteralType,
1825
1825
getBigIntType: () => bigintType,
1826
1826
getBigIntLiteralType,
1827
+ getUnknownType: () => unknownType,
1827
1828
createPromiseType,
1828
1829
createArrayType,
1829
1830
getElementTypeOfArrayType,
Original file line number Diff line number Diff line change @@ -5263,6 +5263,7 @@ export interface TypeChecker {
5263
5263
getBigIntType ( ) : Type ;
5264
5264
getBigIntLiteralType ( value : PseudoBigInt ) : BigIntLiteralType ;
5265
5265
getBooleanType ( ) : Type ;
5266
+ getUnknownType ( ) : Type ;
5266
5267
/* eslint-disable @typescript-eslint/unified-signatures */
5267
5268
/** @internal */
5268
5269
getFalseType ( fresh ?: boolean ) : Type ;
Original file line number Diff line number Diff line change @@ -6288,6 +6288,7 @@ declare namespace ts {
6288
6288
getBigIntType(): Type;
6289
6289
getBigIntLiteralType(value: PseudoBigInt): BigIntLiteralType;
6290
6290
getBooleanType(): Type;
6291
+ getUnknownType(): Type;
6291
6292
getFalseType(): Type;
6292
6293
getTrueType(): Type;
6293
6294
getVoidType(): Type;
You can’t perform that action at this time.
0 commit comments