From 1cb9893a50f394cda1ff49bacc0258a3747ed458 Mon Sep 17 00:00:00 2001 From: Ventsislav Dimitrov <4097884+vdmtrv@users.noreply.github.com> Date: Sat, 11 Jul 2020 22:38:54 +0100 Subject: [PATCH] fix: file appender types --- types/log4js.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/log4js.d.ts b/types/log4js.d.ts index 2fdc99c..45e613f 100644 --- a/types/log4js.d.ts +++ b/types/log4js.d.ts @@ -132,7 +132,7 @@ export interface FileAppender { backups?: number; // defaults to basic layout layout?: Layout; - numBackups?: number; + backups?: number; compress?: boolean; // compress the backups // keep the file extension when rotating logs keepFileExt?: boolean;