File tree Expand file tree Collapse file tree 2 files changed +1
-109
lines changed
node-experimental/src/sdk Expand file tree Collapse file tree 2 files changed +1
-109
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import type { DynamicSamplingContext, Envelope } from './envelope';
77import type { Event , EventHint } from './event' ;
88import type { EventProcessor } from './eventprocessor' ;
99import type { FeedbackEvent } from './feedback' ;
10- import type { Integration , IntegrationClass } from './integration' ;
10+ import type { Integration } from './integration' ;
1111import type { ClientOptions } from './options' ;
1212import type { ParameterizedString } from './parameterize' ;
1313import type { Scope } from './scope' ;
@@ -127,12 +127,6 @@ export interface Client<O extends ClientOptions = ClientOptions> {
127127 */
128128 getEventProcessors ( ) : EventProcessor [ ] ;
129129
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-
136130 /** Get the instance of the integration with the given name on the client, if it was added. */
137131 getIntegrationByName < T extends Integration = Integration > ( name : string ) : T | undefined ;
138132
You can’t perform that action at this time.
0 commit comments