Skip to content

Commit

Permalink
fix(instrumentation): allow different export types for files within a…
Browse files Browse the repository at this point in the history
… Node module

Signed-off-by: Andrew Haines <andrew@haines.org.nz>
  • Loading branch information
haines committed Oct 9, 2023
1 parent c320c98 commit 9796bb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions experimental/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ All notable changes to experimental packages in this project will be documented
### :bug: (Bug Fix)

* fix(otlp-exporter-base): replaced usage of window with _globalThis [#4157](https://github.com/open-telemetry/opentelemetry-js/pull/4157) @cristianmadularu
* fix(instrumentation): allow different export types for files within a Node module [#4046](https://github.com/open-telemetry/opentelemetry-js/pull/4046) @haines

### :books: (Refine Doc)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import {
export class InstrumentationNodeModuleDefinition<T>
implements InstrumentationModuleDefinition<T>
{
files: InstrumentationModuleFile<T>[];
files: InstrumentationModuleFile<any>[];
constructor(
public name: string,
public supportedVersions: string[],
Expand Down

0 comments on commit 9796bb1

Please sign in to comment.