Merge pull request #2566 from damianog/patch-11

Update swig.d.ts
This commit is contained in:
Basarat Ali Syed 2014-07-28 16:38:57 +10:00
commit 85bc00eebb

1
swig/swig.d.ts vendored
View File

@ -11,6 +11,7 @@ declare module "swig" {
export function init(options: Options): void;
export function compileFile(filepath: string): any;
export function compile(source: string, options?: Options): any;
export function renderFile(pathName: string, locals?: any, cb?: (err: any, output: string) => void): string;
export interface Options {
allowErrors?: boolean;