This commit is contained in:
Akko
2025-08-04 18:57:35 +02:00
parent 8cf6e78a79
commit 9495868c2e
5030 changed files with 518594 additions and 17609 deletions

View File

@@ -0,0 +1,7 @@
/**
* Assigns properties from one object to another, using an optional array of property names to ignore.
* @param target - The target object to assign properties to.
* @param options - The object to assign properties from.
* @param ignore - An object of property names to ignore ({ propToIgnore: true }).
*/
export declare function assignWithIgnore<T extends Record<string, any>>(target: T, options: T, ignore?: Record<string, boolean>): void;