From e9668697447c05c23d423dd41f14c2635345d272 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Mon, 4 May 2015 08:24:33 -0700 Subject: [PATCH] build(broccoli.d.ts): add tree.description signature --- tools/broccoli/broccoli.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tools/broccoli/broccoli.d.ts b/tools/broccoli/broccoli.d.ts index dba123831a..0bdeece11f 100644 --- a/tools/broccoli/broccoli.d.ts +++ b/tools/broccoli/broccoli.d.ts @@ -51,6 +51,13 @@ interface BroccoliTree { inputTree?: 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| void); cleanup(): void; }