Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

Commit 9e35302

Browse files
authored
Merge pull request #2 from ExtremTechniker/patch-1
Fix logger.ts.d
2 parents 749d0c1 + fae8b29 commit 9e35302

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

types/lib/logger.d.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ export class Logger {
66
warn(...args: any[]): void;
77
error(...args: any[]): void;
88
replicants(...args: any[]): void;
9-
static globalReconfigure(
10-
opts: LoggerOptions & {file: {path: string}}
11-
): void;
9+
static globalReconfigure(opts: LoggerOptions): void;
1210
}
1311

1412
/**
@@ -25,6 +23,7 @@ export interface LoggerOptions {
2523
enabled: boolean;
2624
timestamps: boolean;
2725
level: LoggerLevel;
26+
path: string;
2827
};
2928
}
3029

0 commit comments

Comments
 (0)