1 | import { Predicate } from './common';
|
2 | export declare const isUndefined: (x: any) => boolean;
|
3 | export declare const isDefined: Predicate<any>;
|
4 | export declare const isNull: (o: any) => boolean;
|
5 | export declare const isNullOrUndefined: Predicate<any>;
|
6 | export declare const isFunction: (x: any) => x is Function;
|
7 | export declare const isNumber: (x: any) => x is number;
|
8 | export declare const isString: (x: any) => x is string;
|
9 | export declare const isObject: (x: any) => boolean;
|
10 | export declare const isArray: (arg: any) => arg is any[];
|
11 | export declare const isDate: (x: any) => x is Date;
|
12 | export declare const isRegExp: (x: any) => x is RegExp;
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 | export declare function isInjectable(val: any): boolean;
|
20 |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 | export declare const isPromise: (x: any) => x is Promise<any>;
|