fix(log): export the LogLevel type

`LogLevel` is an argument of the log functions but it's incorrectly not exported
pull/2625/head
Lucas Nogueira 3 months ago
parent c698e72594
commit a56100515f
No known key found for this signature in database
GPG Key ID: 7C32FCA95C8C95D7

@ -0,0 +1,6 @@
---
"log": patch
"log-js": patch
---
Export the `LogLevel` type.

@ -11,7 +11,7 @@ export interface LogOptions {
keyValues?: Record<string, string | undefined>
}
enum LogLevel {
export enum LogLevel {
/**
* The "trace" level.
*

Loading…
Cancel
Save