Skip to content

Commit 4e2316c

Browse files
committed
feat(build): Add rudimentary TS typings for broccoli.
1 parent 785900f commit 4e2316c

2 files changed

Lines changed: 26 additions & 0 deletions

File tree

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/// <reference path="../typings/es6-promise/es6-promise.d.ts" />
2+
3+
4+
declare class Writer {
5+
write(readTree: (tree) => Promise<string>, destDir: string);
6+
}
7+
8+
export = Writer;

tools/tsd.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": "v4",
3+
"repo": "angular/DefinitelyTyped",
4+
"ref": "master",
5+
"path": "typings",
6+
"bundle": "typings/tsd.d.ts",
7+
"installed": {
8+
"fs-extra/fs-extra.d.ts": {
9+
"commit": "d5f92f93bdb49f332fa662ff1d0cc8700f02e4dc"
10+
},
11+
"node/node.d.ts": {
12+
"commit": "d5f92f93bdb49f332fa662ff1d0cc8700f02e4dc"
13+
},
14+
"es6-promise/es6-promise.d.ts": {
15+
"commit": "d5f92f93bdb49f332fa662ff1d0cc8700f02e4dc"
16+
}
17+
}
18+
}

0 commit comments

Comments
 (0)