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 fddb78c commit 4833cb0Copy full SHA for 4833cb0
packages/types/src/client.ts
@@ -1,4 +1,4 @@
1
-import { Dsn } from './dsn';
+import { DsnLike } from './dsn';
2
import { Event, EventHint } from './event';
3
import { Integration, IntegrationClass } from './integration';
4
import { Options } from './options';
@@ -55,7 +55,7 @@ export interface Client<O extends Options = Options> {
55
captureSession?(session: Session): void;
56
57
/** Returns the current Dsn. */
58
- getDsn(): Dsn | undefined;
+ getDsn(): DsnLike | undefined;
59
60
/** Returns the current options. */
61
getOptions(): O;
0 commit comments