frontend/.pnpm-store/v3/files/25/840fb7fbb1ee525fa942e96bc8d341aeca437d7222f59908840fe2a5815b4881350d80d87c7c8d364b634a5a042eaf8b49d63748a3b748d7cc9b22f174304a

9 lines
351 B
Plaintext

/**
* Pushes all `items` into `array` using `push`, therefore mutating the array.
* We do this for memory and perf reasons, and because `array.push(...items)` would
* run into a "max call stack size exceeded" error with too many items (~65k).
* @param array
* @param items
*/
export declare function push_array<T>(array: T[], items: T[]): void;