Add missing semicolons

This commit is contained in:
Brian Surowiec
2015-01-21 19:55:44 -05:00
parent e0a774f721
commit d4d9f88695
+2 -2
View File
@@ -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;