replace nbsp by normal spaces

This commit is contained in:
Simon Krajewski
2015-03-10 10:04:00 +01:00
parent 3b2ed809b9
commit 29ebb788d0
2 changed files with 10 additions and 10 deletions
+4 -4
View File
@@ -38,13 +38,13 @@ interface HandlebarsStatic extends HandlebarsCommon {
compile(input: any, options?: any): HandlebarsTemplateDelegate;
}
interface HandlebarsTemplates {
[index: string]: HandlebarsTemplateDelegate;
interface HandlebarsTemplates {
[index: string]: HandlebarsTemplateDelegate;
}
interface HandlebarsRuntimeStatic extends HandlebarsCommon {
interface HandlebarsRuntimeStatic extends HandlebarsCommon {
// Handlebars.templates is the default template namespace in precompiler.
templates: HandlebarsTemplates;
templates: HandlebarsTemplates;
}
declare module hbs {