We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83bc92a commit c8d3355Copy full SHA for c8d3355
packages/browser/src/client.ts
@@ -39,7 +39,7 @@ export class BrowserClient extends BaseClient<BrowserOptions> {
39
*
40
* @param options Configuration options for this SDK.
41
*/
42
- public constructor(options: BrowserOptions = {}, transport: Transport, newTransport?: NewTransport) {
+ public constructor(options: BrowserOptions = {}, transport: NewTransport) {
43
options._metadata = options._metadata || {};
44
options._metadata.sdk = options._metadata.sdk || {
45
name: 'sentry.javascript.browser',
@@ -52,7 +52,7 @@ export class BrowserClient extends BaseClient<BrowserOptions> {
52
version: SDK_VERSION,
53
};
54
55
- super(options, transport, newTransport);
+ super(options, transport);
56
}
57
58
/**
0 commit comments