From ec250bc265ba4ba3afa600095883d97f131afa4d Mon Sep 17 00:00:00 2001 From: JenitVaghasiya Date: Wed, 13 Jan 2021 02:05:49 +0530 Subject: [PATCH] Update sweetalert.d.ts --- src/sweetalert.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sweetalert.d.ts b/src/sweetalert.d.ts index f7220ea4..86832940 100644 --- a/src/sweetalert.d.ts +++ b/src/sweetalert.d.ts @@ -1,8 +1,8 @@ import swal, { SweetAlert } from "./core"; declare global { - const swal: SweetAlert; - const sweetAlert: SweetAlert; +const swal: typeof swal; +const sweetAlert: SweetAlert; } export default swal;