File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import type { DynamicSamplingContext, Envelope } from './envelope';
7
7
import type { Event , EventHint } from './event' ;
8
8
import type { EventProcessor } from './eventprocessor' ;
9
9
import type { FeedbackEvent } from './feedback' ;
10
- import type { Integration , IntegrationClass } from './integration' ;
10
+ import type { Integration } from './integration' ;
11
11
import type { ClientOptions } from './options' ;
12
12
import type { ParameterizedString } from './parameterize' ;
13
13
import type { Scope } from './scope' ;
@@ -127,12 +127,6 @@ export interface Client<O extends ClientOptions = ClientOptions> {
127
127
*/
128
128
getEventProcessors ( ) : EventProcessor [ ] ;
129
129
130
- /**
131
- * Returns the client's instance of the given integration class, it any.
132
- * @deprecated Use `getIntegrationByName()` instead.
133
- */
134
- getIntegration < T extends Integration > ( integration : IntegrationClass < T > ) : T | null ;
135
-
136
130
/** Get the instance of the integration with the given name on the client, if it was added. */
137
131
getIntegrationByName < T extends Integration = Integration > ( name : string ) : T | undefined ;
138
132
You can’t perform that action at this time.
0 commit comments