Merge pull request #731 from derekcicerone/patch-2

Replace bool with boolean (for TypeScript 0.9.0+)
This commit is contained in:
Diullei Gomes
2013-07-02 17:09:19 -07:00
+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;