mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 05:58:15 +08:00
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;
|