Jensen-holm's picture
added baseline stuff for making this a flask app with tailwind
a63e09b
raw
history blame
147 Bytes
export declare function flatten<T>(items: T[][]): T[];
export declare function splitWhen<T>(items: T[], predicate: (item: T) => boolean): T[][];