@@ -9,18 +9,19 @@ export * from './edge';
99
1010import type { Integration , Options , StackParser } from '@sentry/types' ;
1111
12- import type { BrowserOptions } from './client' ;
13- import * as clientSdk from './client' ;
14- import type { EdgeOptions } from './edge' ;
15- import * as edgeSdk from './edge' ;
16- import type { NodeOptions } from './server' ;
17- import * as serverSdk from './server' ;
12+ import type * as clientSdk from './client' ;
13+ import type * as edgeSdk from './edge' ;
14+ import type * as serverSdk from './server' ;
1815
1916/** Initializes Sentry Next.js SDK */
20- export declare function init ( options : Options | BrowserOptions | NodeOptions | EdgeOptions ) : void ;
17+ export declare function init (
18+ options : Options | clientSdk . BrowserOptions | serverSdk . NodeOptions | edgeSdk . EdgeOptions ,
19+ ) : void ;
2120
2221// We export a merged Integrations object so that users can (at least typing-wise) use all integrations everywhere.
23- export const Integrations = { ...clientSdk . Integrations , ...serverSdk . Integrations , ...edgeSdk . Integrations } ;
22+ export declare const Integrations : typeof clientSdk . Integrations &
23+ typeof serverSdk . Integrations &
24+ typeof edgeSdk . Integrations ;
2425
2526export declare const defaultIntegrations : Integration [ ] ;
2627export declare const defaultStackParser : StackParser ;
0 commit comments