Add missing ; to swig.d.ts

Swig.d.ts was missing a ; in line 31. This leads to warnings in this file.
This commit is contained in:
matb
2015-12-02 22:21:24 +01:00
parent 715df76441
commit f43a366a92
+2 -2
View File
@@ -28,7 +28,7 @@ declare module "swig" {
compileFile(pathname: string, options?: SwigOptions): (locals?: any) => string;
render(source: string, options?: SwigOptions): string;
renderFile(pathName: string, locals: any, cb: (err: Error, output: string) => void): void;
renderFile(pathName: string, locals?: any): string
renderFile(pathName: string, locals?: any): string;
run(templateFn: Function, locals?: any, filePath?: string): string;
invalidateCache(): void;
@@ -155,4 +155,4 @@ declare module "swig" {
export function renderFile(pathName: string, locals?: any): string
export function run(templateFn: Function, locals?: any, filePath?: string): string;
export function invalidateCache(): void;
}
}