mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 05:09:30 +08:00
2 lines
145 B
Text
2 lines
145 B
Text
export declare function flatten<T>(items: T[][]): T[];
|
|
export declare function splitWhen<T>(items: T[], predicate: (item: T) => boolean): T[][];
|