Fix for Mustache definitions

This commit is contained in:
Boris Yankov
2012-10-27 01:04:38 +03:00
parent e229ca3940
commit 6ba7bc02ab
+1 -1
View File
@@ -43,7 +43,7 @@ interface MustacheStatic {
compile(template: string, tags): MustacheWriter;
compilePartial(name: string, template: string, tags): MustacheWriter;
compileTokens(tokens, template: string): MustacheWriter;
render(template: string, view: any, partials?: any): MustacheWriter;
render(template: string, view: any, partials?: any): string;
to_html(template: string, view: any, partials?: any, send?): string;
}