mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-08 18:28:17 +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;
|