clientnode 3.0.1062 → 3.0.1064
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/index.d.ts +1 -1
- package/package.json +1 -1
- package/type.d.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -644,7 +644,7 @@ export declare class Tools<TElement = HTMLElement> {
|
|
|
644
644
|
*
|
|
645
645
|
* @returns The formatted json string.
|
|
646
646
|
*/
|
|
647
|
-
static convertCircularObjectToJSON(this: void, object: unknown, determineCircularReferenceValue?: ((
|
|
647
|
+
static convertCircularObjectToJSON(this: void, object: unknown, determineCircularReferenceValue?: ((serializedValue: unknown, key: null | string, value: unknown, seenObjects: Map<unknown, unknown>) => unknown), numberOfSpaces?: number): ReturnType<typeof JSON.stringify> | undefined;
|
|
648
648
|
/**
|
|
649
649
|
* Converts given map and all nested found maps objects to corresponding
|
|
650
650
|
* object.
|
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -108,7 +108,7 @@ export interface TimeoutPromise extends Promise<boolean> {
|
|
|
108
108
|
timeoutID: NodeJS.Timeout;
|
|
109
109
|
}
|
|
110
110
|
export type ObjectMask = boolean | {
|
|
111
|
-
[key: string]:
|
|
111
|
+
[key: string]: ObjectMask;
|
|
112
112
|
};
|
|
113
113
|
export interface ObjectMaskConfiguration {
|
|
114
114
|
exclude?: ObjectMask;
|