7 lines
119 B
TypeScript
7 lines
119 B
TypeScript
|
declare function safePushApply<T, S extends T>(
|
||
|
target: T[],
|
||
|
source: ArrayLike<S>,
|
||
|
): void;
|
||
|
|
||
|
export = safePushApply;
|