Skip to content

Commit

Permalink
use any type
Browse files Browse the repository at this point in the history
  • Loading branch information
nialexsan committed Nov 3, 2023
1 parent ce24c87 commit af2db93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/util-logger/src/util-logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ type Config = IConfig & (() => IConfig) | null

// Config dependency injected into logger to break circular dependency
let config: Config = null
export const setConfig = (_config: Config) => {
export const setConfig = (_config: any) => {
config = _config
}

Expand Down

0 comments on commit af2db93

Please sign in to comment.