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