mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 09:11:53 +02:00
3 lines
147 B
TypeScript
3 lines
147 B
TypeScript
|
export declare function flatten<T>(items: T[][]): T[];
|
||
|
export declare function splitWhen<T>(items: T[], predicate: (item: T) => boolean): T[][];
|