UNPKG

402 BTypeScriptView Raw
1export declare const isFn: (value: any) => boolean;
2export declare const prop: (key: string, obj: any) => any;
3export declare function omit<R = object>(props: string[], obj: any): R;
4export declare function pick<R = object>(props: string[], obj: any): R;
5export declare function isArrEqual(arr: any[] | null, to: any[] | null): boolean;
6export declare const mapToObj: (map: Map<any, any>) => {};