angular/tools/broccoli/broccoli-filter.d.ts
Alex Eagle 70433e6b73 chore(build): use a Filter plugin to write the dest folder.
This lets broccoli keep the dest folder up-to-date in 'watch' mode,
so we should be able to use that for Karma.
2015-04-13 15:51:33 -07:00

12 lines
364 B
TypeScript

/// <reference path="../typings/es6-promise/es6-promise.d.ts" />
declare class Filter {
constructor(inputTree: any);
processString(contents: string, relativePath: string): string;
// NB: This function is probably not intended as part of the public API
processFile(srcDir: string, destDir: string, relativePath: string): Promise<any>;
}
export = Filter;