I actually tried to use @types/* directly but came across several issues which prevented me from switching over: - https://github.com/Microsoft/TypeScript/issues/8715 - https://github.com/Microsoft/TypeScript/issues/8723
7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
declare module "broccoli-writer" {
|
|
class Writer {
|
|
write(readTree: (tree: BroccoliTree) => Promise<string>, destDir: string): Promise<any>;
|
|
}
|
|
export = Writer;
|
|
}
|