Skip to content

Commit 3446e71

Browse files
authored
Merge pull request #1 from winstonjs/master
Bug Fix: FileTransportOptions type missing lazy:boolean option (winstonjs#2334)
2 parents 3c45ce0 + 1c43f7b commit 3446e71

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/winston/transports/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ declare namespace winston {
3434
maxFiles?: number;
3535
eol?: string;
3636
tailable?: boolean;
37+
lazy?: boolean;
3738
}
3839

3940
interface FileTransportInstance extends Transport {
@@ -47,6 +48,7 @@ declare namespace winston {
4748
maxFiles: number | null;
4849
eol: string;
4950
tailable: boolean;
51+
lazy: boolean;
5052

5153
new(options?: FileTransportOptions): FileTransportInstance;
5254
}

0 commit comments

Comments
 (0)