UNPKG

4.11 kBTypeScriptView Raw
1import { is } from './is';
2import { isNull, isUndefined, isNaN } from './types/primitive';
3import { isClass, isFunction } from './types/std';
4export * from './types/primitive';
5export * from './types/std';
6export * from './types/node';
7export * from './types/external';
8export { isInstanceOf } from './types/util';
9export default is;
10/**
11 * @deprecated
12 * @see {is.boolean}
13 */
14export declare const boolean: typeof import("./types/primitive").isBoolean;
15/**
16 * @deprecated
17 * @see {is.number}
18 */
19export declare const number: typeof import("./types/primitive").isNumber;
20/**
21 * @deprecated
22 * @see {is.string}
23 */
24export declare const string: typeof import("./types/primitive").isString;
25/**
26 * @deprecated
27 * @see {is.symbol}
28 */
29export declare const symbol: typeof import("./types/primitive").isSymbol;
30/**
31 * @deprecated
32 * @see {is.undefined}
33 */
34export { isUndefined as undefined };
35/**
36 * @deprecated
37 * @see {is.null}
38 */
39export { isNull as null };
40/**
41 * @deprecated
42 * @see {is.nullable}
43 */
44export declare const nullOrUndefined: typeof import("./types/primitive").isNullable;
45/**
46 * @deprecated
47 * @see {is.bigInt}
48 */
49export declare const bigInt: typeof import("./types/primitive").isBigInt;
50/**
51 * @deprecated
52 * @see {is.bigInt}
53 */
54export declare const bigint: typeof import("./types/primitive").isBigInt;
55/**
56 * @deprecated
57 * @see {is.integer}
58 */
59export declare const int: typeof import("./types/primitive").isInteger;
60/**
61 * @deprecated
62 * @see {is.integer32}
63 */
64export declare const int32: typeof import("./types/primitive").isInteger32;
65/**
66 * @deprecated
67 * @see {is.long}
68 */
69export declare const long: typeof import("./types/primitive").isLong;
70/**
71 * @deprecated
72 * @see {is.double}
73 */
74export declare const double: typeof import("./types/primitive").isDouble;
75/**
76 * @deprecated
77 * @see {is.finite}
78 */
79export declare const finite: typeof import("./types/primitive").isFinite;
80/**
81 * @deprecated
82 * @see {is.NaN}
83 */
84export { isNaN as NaN };
85/**
86 * @deprecated
87 * @see {is.primitive}
88 */
89export declare const primitive: typeof import("./types/primitive").isPrimitive;
90/**
91 * @deprecated
92 * @see {is.function}
93 */
94export { isFunction as function };
95/**
96 * @deprecated
97 * @see {is.generatorFunction}
98 */
99export declare const generatorFunction: typeof import("./types/std").isGeneratorFunction;
100/**
101 * @deprecated
102 * @see {is.asyncFunction}
103 */
104export declare const asyncFunction: typeof import("./types/std").isAsyncFunction;
105/**
106 * @deprecated
107 * @see {is.class}
108 */
109export { isClass as class };
110/**
111 * @deprecated
112 * @see {is.array}
113 */
114export declare const array: typeof import("./types/std").isArray;
115/**
116 * @deprecated
117 * @see {is.object}
118 */
119export declare const object: typeof import("./types/std").isObject;
120/**
121 * @deprecated
122 * @see {is.date}
123 */
124export declare const date: typeof import("./types/std").isDate;
125/**
126 * @deprecated
127 * @see {is.error}
128 */
129export declare const error: typeof import("./types/std").isError;
130/**
131 * @deprecated
132 * @see {is.regExp}
133 */
134export declare const regExp: typeof import("./types/std").isRegExp;
135/**
136 * @deprecated
137 * @see {is.regExp}
138 */
139export declare const regexp: typeof import("./types/std").isRegExp;
140/**
141 * @deprecated
142 * @see {is.generator}
143 */
144export declare const generator: typeof import("./types/std").isGenerator;
145/**
146 * @deprecated
147 * @see {is.promiseLike}
148 */
149export declare const promise: typeof import("./types/std").isPromiseLike;
150/**
151 * @deprecated
152 * @see {is.buffer}
153 */
154export declare const buffer: typeof import("./types/node").isBuffer;
155/**
156 * @deprecated
157 * @see {is.stream}
158 */
159export declare const stream: typeof import("./types/node").isStream;
160/**
161 * @deprecated
162 * @see {is.readable}
163 */
164export declare const readable: typeof import("./types/node").isReadable;
165/**
166 * @deprecated
167 * @see {is.writable}
168 */
169export declare const writable: typeof import("./types/node").isWritable;
170/**
171 * @deprecated
172 * @see {is.duplex}
173 */
174export declare const duplex: typeof import("./types/node").isDuplex;
175/**
176 * @deprecated
177 * @see {is.longObject}
178 */
179export declare const Long: typeof import("./types/external").isLongObject;