build(broccoli.d.ts): add tree.description signature

This commit is contained in:
Igor Minar 2015-05-04 08:24:33 -07:00
parent 6b017fb388
commit e966869744
1 changed files with 7 additions and 0 deletions

View File

@ -51,6 +51,13 @@ interface BroccoliTree {
inputTree?: BroccoliTree; inputTree?: BroccoliTree;
inputTrees?: BroccoliTree[]; inputTrees?: BroccoliTree[];
/**
* Description or name of the plugin used for reporting.
*
* If missing `tree.constructor.name` is usually used instead.
*/
description?: string;
rebuild(): (Promise<any>| void); rebuild(): (Promise<any>| void);
cleanup(): void; cleanup(): void;
} }