chore(typescript 1.6 upgrade): fix build.tools
This commit is contained in:

committed by
Victor Savkin

parent
1cf45757cd
commit
2ee32fb02c
10
tools/broccoli/broccoli-writer.d.ts
vendored
10
tools/broccoli/broccoli-writer.d.ts
vendored
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user