diff --git a/plugins/node/opentelemetry-instrumentation-mongodb/src/types.ts b/plugins/node/opentelemetry-instrumentation-mongodb/src/types.ts index e0389de007..e2da034215 100644 --- a/plugins/node/opentelemetry-instrumentation-mongodb/src/types.ts +++ b/plugins/node/opentelemetry-instrumentation-mongodb/src/types.ts @@ -69,14 +69,3 @@ export enum MongodbCommandType { COUNT = 'count', UNKNOWN = 'unknown', } - -// https://github.com/mongodb/node-mongodb-native/blob/v4.2.2/src/cmap/connection.ts -export type V4Connection = { - id: number | ''; - command( - ns: any, - cmd: Document, - options: undefined | unknown, - callback: any - ): void; -};