File tree 2 files changed +0
-36
lines changed
2 files changed +0
-36
lines changed Original file line number Diff line number Diff line change @@ -33,24 +33,6 @@ export interface BaseBunOptions {
33
33
* */
34
34
clientClass ?: typeof BunClient ;
35
35
36
- // TODO (v8): Remove this in v8
37
- /**
38
- * @deprecated Moved to constructor options of the `Http` and `Undici` integration.
39
- * @example
40
- * ```js
41
- * Sentry.init({
42
- * integrations: [
43
- * new Sentry.Integrations.Http({
44
- * tracing: {
45
- * shouldCreateSpanForRequest: (url: string) => false,
46
- * }
47
- * });
48
- * ],
49
- * });
50
- * ```
51
- */
52
- shouldCreateSpanForRequest ?( this : void , url : string ) : boolean ;
53
-
54
36
/** Callback that is executed when a fatal global error occurs. */
55
37
onFatalError ?( this : void , error : Error ) : void ;
56
38
}
Original file line number Diff line number Diff line change @@ -24,24 +24,6 @@ export interface BaseDenoOptions {
24
24
/** Sets an optional server name (device name) */
25
25
serverName ?: string ;
26
26
27
- // TODO (v8): Remove this in v8
28
- /**
29
- * @deprecated Moved to constructor options of the `Http` and `Undici` integration.
30
- * @example
31
- * ```js
32
- * Sentry.init({
33
- * integrations: [
34
- * new Sentry.Integrations.Http({
35
- * tracing: {
36
- * shouldCreateSpanForRequest: (url: string) => false,
37
- * }
38
- * });
39
- * ],
40
- * });
41
- * ```
42
- */
43
- shouldCreateSpanForRequest ?( this : void , url : string ) : boolean ;
44
-
45
27
/** Callback that is executed when a fatal global error occurs. */
46
28
onFatalError ?( this : void , error : Error ) : void ;
47
29
}
You can’t perform that action at this time.
0 commit comments