2015-04-10 19:26:37 -04:00
|
|
|
/// <reference path="../typings/es6-promise/es6-promise.d.ts" />
|
|
|
|
|
2016-04-12 12:40:37 -04:00
|
|
|
declare module "broccoli-writer" {
|
2015-09-22 15:03:39 -04:00
|
|
|
class Writer {
|
2016-01-22 13:51:16 -05:00
|
|
|
write(readTree: (tree: BroccoliTree) => Promise<string>, destDir: string): Promise<any>;
|
2015-09-22 15:03:39 -04:00
|
|
|
}
|
|
|
|
export = Writer;
|
|
|
|
}
|