-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtype.d.ts
More file actions
31 lines (31 loc) · 2.01 KB
/
type.d.ts
File metadata and controls
31 lines (31 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
export declare const getType: (target: any) => string;
export declare const of: (target: any) => string;
export declare const type: (target: any) => string;
export declare const isBoolean: (target: any) => target is boolean;
export declare const isNotBoolean: (target: any) => target is unknown;
export declare const isNumber: (target: any) => target is number;
export declare const isNotNumber: (target: any) => target is unknown;
export declare const isString: (target: any) => target is string;
export declare const isNotString: (target: any) => target is unknown;
export declare const isFunction: (target: any) => target is Function;
export declare const isNotFunction: (target: any) => target is unknown;
export declare const isArray: (target: any) => target is any[];
export declare const isNotArray: (target: any) => target is unknown;
export declare const isDate: (target: any) => target is Date;
export declare const isNotDate: (target: any) => target is unknown;
export declare const isRegExp: (target: any) => target is RegExp;
export declare const isNotRegExp: (target: any) => target is unknown;
export declare const isUndefined: (target: any) => target is undefined;
export declare const isNotUndefined: (target: any) => target is unknown;
export declare const isNull: (target: any) => target is null;
export declare const isNotNull: (target: any) => target is unknown;
export declare const isNodeList: (target: any) => target is NodeList;
export declare const isNotNodeList: (target: any) => target is unknown;
export declare const isObject: (target: any) => target is Object;
export declare const isNotObject: (target: any) => target is unknown;
export declare const isSymbol: (target: any) => target is Symbol;
export declare const isNotSymbol: (target: any) => target is unknown;
export declare const isEmpty: (target: any) => boolean;
export declare const isNotEmpty: (target: any) => boolean;
export declare const isElement: (target: any) => target is HTMLElement;
export declare const isNotElement: (target: any) => target is unknown;