git-subtree-dir: main-site git-subtree-mainline: 4d1daa39101c0a85ca6d916f1c31139faf39632a git-subtree-split: 5cefb4d1618bc54ae0e86830421a8c911900302c
12 lines
678 B
TypeScript
12 lines
678 B
TypeScript
export type Key = string | number;
|
|
export type Comparator = (a: any, b: any) => boolean;
|
|
export declare const typeChecker: <TType>(type: any) => (value: any) => value is TType;
|
|
export declare const comparable: (value: any) => any;
|
|
export declare const coercePotentiallyNull: (value: any) => any;
|
|
export declare const isArray: (value: any) => value is any[];
|
|
export declare const isObject: (value: any) => value is Object;
|
|
export declare const isFunction: (value: any) => value is Function;
|
|
export declare const isProperty: (item: any, key: any) => boolean;
|
|
export declare const isVanillaObject: (value: any) => boolean;
|
|
export declare const equals: (a: any, b: any) => boolean;
|