🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
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;
|