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 a82b1f7 commit e2edcb6Copy full SHA for e2edcb6
packages/core/src/server-runtime-client.ts
@@ -28,12 +28,12 @@ export interface ServerRuntimeClientOptions extends ClientOptions<BaseTransportO
28
/**
29
* The Sentry Server Runtime Client SDK.
30
*/
31
-export class ServerRuntimeClient extends BaseClient<ServerRuntimeClientOptions> {
+export class ServerRuntimeClient<O extends ClientOptions & ServerRuntimeClientOptions> extends BaseClient<O> {
32
33
* Creates a new Edge SDK instance.
34
* @param options Configuration options for this SDK.
35
36
- public constructor(options: ServerRuntimeClientOptions) {
+ public constructor(options: O) {
37
// Server clients always support tracing
38
addTracingExtensions();
39
0 commit comments