7 lines
289 B
TypeScript
7 lines
289 B
TypeScript
/**
|
|
* Pushes all items from the given array or set to the given array.
|
|
* @param array - The array to push the items to
|
|
* @param items - The items to push to the array
|
|
*/
|
|
export declare function pushAll<const T>(array: T[], items: readonly NoInfer<T>[] | ReadonlySet<NoInfer<T>>): T[];
|