From d4d9f8869510249727b5bc3953c0d9a1c3d5d377 Mon Sep 17 00:00:00 2001 From: Brian Surowiec Date: Wed, 21 Jan 2015 19:55:44 -0500 Subject: [PATCH] Add missing semicolons --- bootbox/bootbox.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootbox/bootbox.d.ts b/bootbox/bootbox.d.ts index 91c299931..b9f3db22b 100644 --- a/bootbox/bootbox.d.ts +++ b/bootbox/bootbox.d.ts @@ -26,8 +26,8 @@ interface BootboxButton { } interface BootboxDialogOptions { - message: string | Element - title?: string | Element + message: string | Element; + title?: string | Element; callback?: (result: boolean) => any; show?: boolean; onEscape?: () => any;