UNPKG

254 BTypeScriptView Raw
1export declare function memoize<T>(fn: () => T): () => T;
2/**
3 * drop-in replacement for _.without
4 */
5export declare function without<T>(items: T[], item: T): T[];
6export declare function union<T extends string | number>(itemsA: T[], itemsB: T[]): T[];