@adtrackify/at-tracking-event-types 1.0.33 → 1.0.34
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/index.d.ts
CHANGED
|
@@ -411,7 +411,9 @@ declare module '@adtrackify/at-tracking-event-types/utils/fake-tracking-event-ge
|
|
|
411
411
|
export const generateFakeTrackingEventIdentity: (identity?: Partial<TrackingEventIdentity>) => TrackingEventIdentity;
|
|
412
412
|
export const generateFakeAddress: (address?: AddressInfo) => AddressInfo;
|
|
413
413
|
export const choasFake: <T>(input?: T | undefined) => T | null | undefined;
|
|
414
|
-
export function randomEnum<T
|
|
414
|
+
export function randomEnum<T extends {
|
|
415
|
+
[s: string]: unknown;
|
|
416
|
+
}>(anEnum: T): T[keyof T];
|
|
415
417
|
export const randomEnumKey: (enumeration: any) => string;
|
|
416
418
|
|
|
417
419
|
}
|