clientnode 3.0.1167 → 3.0.1168
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/object.d.ts +1 -1
- package/package.json +1 -1
package/dist/object.d.ts
CHANGED
|
@@ -184,7 +184,7 @@ export declare const mask: <Type extends Mapping<unknown> = Mapping<unknown>>(ob
|
|
|
184
184
|
* modification info from (usually only needed internally).
|
|
185
185
|
* @returns Given target modified with given source.
|
|
186
186
|
*/
|
|
187
|
-
export declare const modifyObject: <T = unknown>(target: T, source: unknown, removeIndicatorKey?: string, prependIndicatorKey?: string, appendIndicatorKey?: string, positionPrefix?: string, positionSuffix?: string, parentSource?: unknown, parentKey?: unknown) => T
|
|
187
|
+
export declare const modifyObject: <T = unknown>(target: T, source: unknown, removeIndicatorKey?: string, prependIndicatorKey?: string, appendIndicatorKey?: string, positionPrefix?: string, positionSuffix?: string, parentSource?: unknown, parentKey?: unknown) => T;
|
|
188
188
|
/**
|
|
189
189
|
* Removes given key from given object recursively.
|
|
190
190
|
* @param object - Object to process.
|