Merge pull request #3182 from nicolashemonic/patch-1

Updated underscore.d.ts
This commit is contained in:
Masahiro Wakame
2014-11-20 22:13:04 +09:00
+1 -1
View File
@@ -1472,7 +1472,7 @@ interface UnderscoreStatic {
* @param settings Settings to use while compiling.
* @return Returns the compiled Underscore HTML template.
**/
template(templateString: string): (...data: any[]) => string;
template(templateString: string, settings?: _.TemplateSettings): (...data: any[]) => string;
template(templateString: string, data: any, settings?: _.TemplateSettings): string;
/**