From 114e520d2cb8c3d1820638fd8cc5bd28dde51b8d Mon Sep 17 00:00:00 2001 From: Shubhdeep Chhabra Date: Wed, 24 Jan 2024 22:33:31 +0530 Subject: [PATCH] fix(replay): fixed type for options of replayIntegration --- packages/replay/src/integration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/replay/src/integration.ts b/packages/replay/src/integration.ts index 9f4d03e7f5fa..3434888f6574 100644 --- a/packages/replay/src/integration.ts +++ b/packages/replay/src/integration.ts @@ -30,7 +30,7 @@ let _initialized = false; type InitialReplayPluginOptions = Omit & Partial>; -export const replayIntegration = ((options?: InitialReplayPluginOptions) => { +export const replayIntegration = ((options?: ReplayConfiguration) => { // eslint-disable-next-line deprecation/deprecation return new Replay(options); }) satisfies IntegrationFn;