We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c280d29 commit b520861Copy full SHA for b520861
src/types/index.d.ts
@@ -37,6 +37,11 @@ export interface IdOptions extends Record<string, any> {
37
session_id_storage_location?: string;
38
}
39
40
+export interface EventDispatcherOptions {
41
+ enabled?: boolean;
42
+ waitForBeacon?: boolean;
43
+}
44
+
45
export interface ConstructorClientOptions {
46
apiKey: string;
47
version?: string;
@@ -53,7 +58,7 @@ export interface ConstructorClientOptions {
53
58
trackingSendDelay?: number;
54
59
sendTrackingEvents?: boolean;
55
60
sendReferrerWithTrackingEvents?: boolean;
56
- eventDispatcher?: EventDispatcher;
61
+ eventDispatcher?: EventDispatcherOptions;
57
62
beaconMode?: boolean;
63
networkParameters?: NetworkParameters;
64
0 commit comments