Skip to content

Commit

Permalink
Merge pull request #2 from ExtremTechniker/patch-1
Browse files Browse the repository at this point in the history
Fix logger.ts.d
  • Loading branch information
hlxid authored Oct 28, 2021
2 parents 749d0c1 + fae8b29 commit 9e35302
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions types/lib/logger.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ export class Logger {
warn(...args: any[]): void;
error(...args: any[]): void;
replicants(...args: any[]): void;
static globalReconfigure(
opts: LoggerOptions & {file: {path: string}}
): void;
static globalReconfigure(opts: LoggerOptions): void;
}

/**
Expand All @@ -25,6 +23,7 @@ export interface LoggerOptions {
enabled: boolean;
timestamps: boolean;
level: LoggerLevel;
path: string;
};
}

Expand Down

0 comments on commit 9e35302

Please sign in to comment.