Skip to content

Commit

Permalink
Merge pull request #1 from winstonjs/master
Browse files Browse the repository at this point in the history
Bug Fix: FileTransportOptions type missing lazy:boolean option (winstonjs#2334)
  • Loading branch information
adampweb committed Jul 20, 2023
2 parents 3c45ce0 + 1c43f7b commit 3446e71
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/winston/transports/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ declare namespace winston {
maxFiles?: number;
eol?: string;
tailable?: boolean;
lazy?: boolean;
}

interface FileTransportInstance extends Transport {
Expand All @@ -47,6 +48,7 @@ declare namespace winston {
maxFiles: number | null;
eol: string;
tailable: boolean;
lazy: boolean;

new(options?: FileTransportOptions): FileTransportInstance;
}
Expand Down

0 comments on commit 3446e71

Please sign in to comment.