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