@@ -2,26 +2,26 @@ import { IsArray } from '../type/is-array.type';
22import { IsBigInt } from '../type/is-big-int.type' ;
33import { IsBoolean } from '../type/is-boolean.type' ;
44import { IsBooleanObject } from '../type/is-boolean-object.type' ;
5+ import { IsBooleanType } from '../type/is-boolean-type.type' ;
56import { IsDefined } from '../type/is-defined.type' ;
67import { IsFunction } from '../type/is-function.type' ;
78import { IsInstance } from '../type/is-instance.type' ;
89import { IsKey } from '../type/is-key.type' ;
910import { IsNot } from '../not/interface/is-not.interface' ;
1011import { IsNull } from '../type/is-null.type' ;
1112import { IsNumber } from '../type/is-number.type' ;
13+ import { IsNumberObject } from '../type/is-number-object.type' ;
14+ import { IsNumberType } from '../type/is-number-type.type' ;
1215import { IsObject } from '../type/is-object.type' ;
1316import { IsObjectKey } from '../type/is-object-key.type' ;
17+ import { IsObjectKeyIn } from '../type/is-object-key-in.type' ;
1418import { IsPrimitive } from '../type/is-primitive.type' ;
1519import { IsString } from '../type/is-string.type' ;
1620import { IsStringObject } from '../type/is-string-object.type' ;
1721import { IsStringType } from '../type/is-string-type.type' ;
1822import { IsSymbol } from '../type/is-symbol.type' ;
1923import { IsType } from '../type/is-type.type' ;
2024import { IsUndefined } from '../type/is-undefined.type' ;
21- import { IsBooleanType } from '../type/is-boolean-type.type' ;
22- import { IsNumberObject } from '../type/is-number-object.type' ;
23- import { IsNumberType } from '../type/is-number-type.type' ;
24-
2525export interface Is {
2626 array : IsArray ;
2727 bigInt : IsBigInt ;
@@ -40,6 +40,7 @@ export interface Is {
4040 numberType : IsNumberType ;
4141 object : IsObject ;
4242 objectKey : IsObjectKey ;
43+ objectKeyIn : IsObjectKeyIn ;
4344 primitive : IsPrimitive ;
4445 string : IsString ;
4546 stringObject : IsStringObject ;
0 commit comments