From 387e7123cb77ba28215bc0c5b4a09d2d63075017 Mon Sep 17 00:00:00 2001 From: Lam Wei Li Date: Tue, 26 Jul 2022 15:43:09 +0800 Subject: [PATCH] type: corrected Recording interface --- 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 cb22ffa..7606fcb 100644 --- a/types/log4js.d.ts +++ b/types/log4js.d.ts @@ -400,7 +400,7 @@ export interface Configuration { } export interface Recording { - configure(loggingEvent: LoggingEvent): void; + configure(): AppenderFunction; replay(): LoggingEvent[]; playback(): LoggingEvent[]; reset(): void;