chore(typescript 1.6 upgrade): fix build.tools

This commit is contained in:
Alex Eagle
2015-09-22 12:03:39 -07:00
committed by Victor Savkin
parent 1cf45757cd
commit 2ee32fb02c
12 changed files with 747 additions and 205 deletions

View File

@ -1,6 +1,8 @@
/// <reference path="../typings/es6-promise/es6-promise.d.ts" />
declare class Writer { write(readTree: (tree) => Promise<string>, destDir: string): Promise<any>; }
export = Writer;
declare module "broccoli-writer" {
class Writer {
write(readTree:(tree) => Promise<string>, destDir:string):Promise<any>;
}
export = Writer;
}