You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
export declare function memoize<T>(fn: () => T): () => T;
|
|
/**
|
|
* drop-in replacement for _.without
|
|
*/
|
|
export declare function without<T>(items: T[], item: T): T[];
|
|
export declare function union<T extends string | number>(itemsA: T[], itemsB: T[]): T[];
|