mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 09:19:30 +08:00
8 lines
351 B
Text
8 lines
351 B
Text
/**
|
|
* 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;
|