From 55af4ed84a5a33b5ac73cdde539b00096cb19f16 Mon Sep 17 00:00:00 2001 From: Troy McKinnon Date: Tue, 22 Mar 2016 17:12:49 -0500 Subject: [PATCH] allow importing bootbox as a module --- bootbox/bootbox.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bootbox/bootbox.d.ts b/bootbox/bootbox.d.ts index 9764a6d81..c62ef5166 100644 --- a/bootbox/bootbox.d.ts +++ b/bootbox/bootbox.d.ts @@ -98,3 +98,7 @@ interface BootboxStatic { } declare var bootbox: BootboxStatic; + +declare module "bootbox" { + export = bootbox; +}