1+ // Import: Type.
12import { IsArray } from '../type/is-array.type' ;
23import { IsBigInt } from '../type/is-big-int.type' ;
34import { IsBoolean } from '../type/is-boolean.type' ;
45import { IsBooleanObject } from '../type/is-boolean-object.type' ;
56import { IsBooleanType } from '../type/is-boolean-type.type' ;
67import { IsClass } from '../type/is-class.type' ;
8+ import { IsDate } from '../type/is-date.type' ;
79import { IsDefined } from '../type/is-defined.type' ;
10+ import { IsFalse } from '../type/is-false.type' ;
811import { IsFunction } from '../type/is-function.type' ;
912import { IsInstance } from '../type/is-instance.type' ;
1013import { IsKey } from '../type/is-key.type' ;
1114import { IsNot } from '../not/interface/is-not.interface' ;
1215import { IsNull } from '../type/is-null.type' ;
1316import { IsNumber } from '../type/is-number.type' ;
17+ import { IsNumberBetween } from '../type/is-number-between.type' ;
1418import { IsNumberObject } from '../type/is-number-object.type' ;
1519import { IsNumberType } from '../type/is-number-type.type' ;
1620import { IsObject } from '../type/is-object.type' ;
1721import { IsObjectKey } from '../type/is-object-key.type' ;
1822import { IsObjectKeyIn } from '../type/is-object-key-in.type' ;
1923import { IsObjectKeys } from '../type/is-object-keys.type' ;
2024import { IsPrimitive } from '../type/is-primitive.type' ;
25+ import { IsRegExp } from '../type/is-regexp.type' ;
2126import { IsString } from '../type/is-string.type' ;
27+ import { IsStringLength } from '../type/is-string-length.type' ;
2228import { IsStringObject } from '../type/is-string-object.type' ;
2329import { IsStringType } from '../type/is-string-type.type' ;
2430import { IsSymbol } from '../type/is-symbol.type' ;
31+ import { IsTrue } from '../type/is-true.type' ;
2532import { IsType } from '../type/is-type.type' ;
2633import { IsUndefined } from '../type/is-undefined.type' ;
2734/**
35+ * Export: Interface.
2836 * Object with prefixed `is` functions.
2937 */
3038export interface Is {
@@ -35,24 +43,30 @@ export interface Is {
3543 booleanObject : IsBooleanObject ;
3644 booleanType : IsBooleanType ;
3745 class : IsClass ;
46+ date : IsDate ; // From 4.2.0
3847 defined : IsDefined ;
48+ false : IsFalse ; // From `4.2.0`
3949 function : IsFunction ;
4050 instance : IsInstance ;
4151 key : IsKey ;
4252 not : IsNot ;
4353 null : IsNull ;
4454 number : IsNumber ;
55+ numberBetween : IsNumberBetween ; // From `4.2.0`
4556 numberObject : IsNumberObject ;
4657 numberType : IsNumberType ;
4758 object : IsObject ;
4859 objectKey : IsObjectKey ;
4960 objectKeyIn : IsObjectKeyIn ;
5061 objectKeys : IsObjectKeys ;
5162 primitive : IsPrimitive ;
63+ regexp : IsRegExp ; // From 4.2.0
5264 string : IsString ;
65+ stringLength : IsStringLength ;
5366 stringObject : IsStringObject ;
5467 stringType : IsStringType ;
5568 symbol : IsSymbol ;
69+ true : IsTrue ; // From 4.2.0
5670 type : IsType ;
5771 undefined : IsUndefined ;
5872}
0 commit comments