Skip to content

Commit

Permalink
fix(otlp-transformer): remove type dependency on Long (#3022)
Browse files Browse the repository at this point in the history
Co-authored-by: Rauno Viskus <[email protected]>
  • Loading branch information
legendecas and rauno56 authored Jun 7, 2022
1 parent 9c9789a commit 48e960a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions experimental/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ All notable changes to experimental packages in this project will be documented

### :bug: (Bug Fix)

* fix(otlp-transformer): remove type dependency on Long #3022 @legendecas

### :books: (Refine Doc)

### :house: (Internal)
Expand Down
2 changes: 1 addition & 1 deletion experimental/packages/otlp-transformer/src/common/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export interface IAnyValue {
boolValue?: (boolean | null);

/** AnyValue intValue */
intValue?: (number | Long | null);
intValue?: (number | null);

/** AnyValue doubleValue */
doubleValue?: (number | null);
Expand Down

0 comments on commit 48e960a

Please sign in to comment.