-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.d.ts
More file actions
14 lines (13 loc) · 703 Bytes
/
index.d.ts
File metadata and controls
14 lines (13 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export as namespace jsminiIs;
export function isInRange (x: number, min?: number, max?: number): boolean;
export function isNumber (x: any, min?: number, max?: number): x is number;
export function isInteger (x: any, min?: number, max?: number): x is number;
export function isInt (x: any): x is number;
export function isBoolean (x: any): x is boolean;
export function isString (x: any): x is string;
export function isEmptyString (x: any): boolean;
export function isNull (x: any): x is null;
export function isUndefined (x: any): x is undefined;
export function isObject (x: any): x is object;
export function isFunction (x: any): x is (...any) => any;
export function isArray (x: any): x is any[];