Merge pull request #1605 from styfle/patch-2

Changing the context param to be OPTIONAL
This commit is contained in:
Igorbek
2014-01-27 00:22:10 -08:00
+1 -1
View File
@@ -16,7 +16,7 @@ interface HandlebarsStatic {
parse(input: string): boolean;
logger: Logger;
log(level: number, obj: any): void;
compile(input: any, options?: any): (context: any, options?: any) => string;
compile(input: any, options?: any): (context?: any, options?: any) => string;
Logger: typeof Logger;
}