From 62c560c3f18e07aaaedfd39ffec4b7d212bd0838 Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Thu, 6 Jul 2023 15:44:22 +0200 Subject: [PATCH] fix(tracker): typings for options --- tracker/tracker/src/main/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tracker/tracker/src/main/index.ts b/tracker/tracker/src/main/index.ts index 2a7113ba6..5f713e907 100644 --- a/tracker/tracker/src/main/index.ts +++ b/tracker/tracker/src/main/index.ts @@ -49,8 +49,8 @@ export type Options = Partial< sessionToken?: string respectDoNotTrack?: boolean autoResetOnWindowOpen?: boolean - network?: NetworkOptions - mouse?: MouseHandlerOptions + network?: Partial + mouse?: Partial flags?: { onFlagsLoad?: (flags: IFeatureFlag[]) => void }