@livedigital/client 3.34.1 → 3.34.2
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/helpers/common.d.ts +1 -1
- package/dist/index.es.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/helpers/common.ts +2 -2
package/dist/helpers/common.d.ts
CHANGED
|
@@ -9,6 +9,6 @@ export declare const deepEqualObject: (object1: any, object2: any) => boolean;
|
|
|
9
9
|
export declare function debounce<T extends (...args: any[]) => void>(callback: T, delay: number, immediate?: boolean): <U>(this: U, ...args: Parameters<typeof callback>) => void;
|
|
10
10
|
export declare function prepareLogLevel(level?: LogLevel): LogLevel;
|
|
11
11
|
export declare function isAnalyticsActive(flag?: boolean): boolean;
|
|
12
|
-
export declare function randomString(
|
|
12
|
+
export declare function randomString(): string;
|
|
13
13
|
export declare function markSDKInstance(mark: string): void;
|
|
14
14
|
export declare function getSDKInstancesMarks(): string[];
|