From 6ba7bc02abcab0a63d1fa0b3b3a9d0f91d615e38 Mon Sep 17 00:00:00 2001 From: Boris Yankov Date: Sat, 27 Oct 2012 01:04:23 +0300 Subject: [PATCH] Fix for Mustache definitions --- Definitions/mustache-0.7.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Definitions/mustache-0.7.d.ts b/Definitions/mustache-0.7.d.ts index 83dcb26ea..9c5b9263b 100644 --- a/Definitions/mustache-0.7.d.ts +++ b/Definitions/mustache-0.7.d.ts @@ -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; }