From 5fec3e3e4ce08ecadb4c8b74ec5ec6faa3b21e1f Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Thu, 31 Aug 2023 10:40:15 +0200 Subject: [PATCH] fix(browser): Add replay and profiling options to `BrowserClientOptions` --- packages/browser/src/client.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/browser/src/client.ts b/packages/browser/src/client.ts index 60579038a50a..5027c4f0f1a4 100644 --- a/packages/browser/src/client.ts +++ b/packages/browser/src/client.ts @@ -30,7 +30,9 @@ export type BrowserOptions = Options & * Configuration options for the Sentry Browser SDK Client class * @see BrowserClient for more information. */ -export type BrowserClientOptions = ClientOptions; +export type BrowserClientOptions = ClientOptions & + BrowserClientReplayOptions & + BrowserClientProfilingOptions; /** * The Sentry Browser SDK Client.