From c2da721132b20a3e983351af1e67c714298d173a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Tue, 21 Dec 2021 15:47:37 +0300 Subject: [PATCH] Fixed #1897 - ConfirmationService: require is not defined --- src/components/confirmationservice/ConfirmationService.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/confirmationservice/ConfirmationService.d.ts b/src/components/confirmationservice/ConfirmationService.d.ts index 269b0f83a..0a1a610cf 100644 --- a/src/components/confirmationservice/ConfirmationService.d.ts +++ b/src/components/confirmationservice/ConfirmationService.d.ts @@ -5,7 +5,7 @@ declare const plugin: Plugin; export default plugin; interface ConfirmationServiceMethods { - require(options: ConfirmationOptions): any; + require(options: ConfirmationOptions): void; close(): void; }