From c756f30c245a96d5d5ecbe4ace7b65129fe5b27d Mon Sep 17 00:00:00 2001 From: Juan Diego Palacio Date: Sat, 12 Mar 2022 16:58:46 -0500 Subject: [PATCH] fixing swal constant error --- typings/sweetalert.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/sweetalert.d.ts b/typings/sweetalert.d.ts index f7220ea4..dccaf8d4 100644 --- a/typings/sweetalert.d.ts +++ b/typings/sweetalert.d.ts @@ -1,7 +1,7 @@ import swal, { SweetAlert } from "./core"; declare global { - const swal: SweetAlert; + const _swal_: SweetAlert; const sweetAlert: SweetAlert; }