Replace bool with boolean (for TypeScript 0.9.0+)

This commit is contained in:
Derek Cicerone
2013-07-01 19:10:05 -04:00
parent f6deae3bb4
commit 555d0f5c5f
+2 -2
View File
@@ -5,7 +5,7 @@
interface HandlebarsStatic {
registerHelper(name: string, fn: Function, inverse?: bool): void;
registerHelper(name: string, fn: Function, inverse?: boolean): void;
registerPartial(name: string, str): void;
K();
createFrame(object);
@@ -20,4 +20,4 @@ interface HandlebarsStatic {
compile(environment, options?, context?, asObject?);
}
declare var Handlebars: HandlebarsStatic;
declare var Handlebars: HandlebarsStatic;