Skip to content

Commit

Permalink
any type for config
Browse files Browse the repository at this point in the history
  • Loading branch information
nialexsan committed Nov 1, 2023
1 parent ac4e161 commit 04bd73e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/util-logger/src/util-logger.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Config dependency injected into logger to break circular dependency
let config = null
export const setConfig = _config => {
let config: any = null
export const setConfig = (_config: any) => {
config = _config
}

Expand Down

0 comments on commit 04bd73e

Please sign in to comment.