From 3ec37886979ae31724348309ff186b618b0013eb Mon Sep 17 00:00:00 2001 From: KavishkaRajakaruna Date: Mon, 19 Oct 2020 15:50:40 +0530 Subject: [PATCH] error fixed for swal to _swal for angular 7 & above --- src/sweetalert.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sweetalert.d.ts b/src/sweetalert.d.ts index f7220ea4..630cbc74 100644 --- a/src/sweetalert.d.ts +++ b/src/sweetalert.d.ts @@ -1,7 +1,7 @@ import swal, { SweetAlert } from "./core"; declare global { - const swal: SweetAlert; + const _swal: SweetAlert; const sweetAlert: SweetAlert; }