UNPKG

562 BTypeScriptView Raw
1export declare type Key = string | number;
2export declare type Comparator = (a: any, b: any) => boolean;
3export declare const typeChecker: <TType>(type: any) => (value: any) => value is TType;
4export declare const comparable: (value: any) => any;
5export declare const isArray: (value: any) => value is any[];
6export declare const isObject: (value: any) => value is Object;
7export declare const isFunction: (value: any) => value is Function;
8export declare const isVanillaObject: (value: any) => boolean;
9export declare const equals: (a: any, b: any) => boolean;