Skip to content

Commit

Permalink
fix: updating typesript types.
Browse files Browse the repository at this point in the history
  • Loading branch information
mateodelnorte committed Sep 13, 2022
1 parent 6a55372 commit 0e14191
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
declare type BunyanLogFunction = (formatMessage?: string, ...interpolationArg: unknown[]) => void;
declare type DebugLogFunction = (formatMessage?: string, ...interpolationArg: unknown[]) => void;
declare type PinoLogFunction = (merginObject?: unknown, formatMessage?: string, ...interpolationArg: unknown[]) => void;
declare type LlogFunction = BunyanLogFunction | DebugLogFunction | PinoLogFunction;
declare type LlogFunction = (merginObject?: string | Error | unknown, formatMessage?: string, ...interpolationArg: unknown[]) => void;

declare interface logger {
trace: LlogFunction,
Expand Down

0 comments on commit 0e14191

Please sign in to comment.