From d4ce6f2e458822dc85a8c86956c10aa93d141f3c Mon Sep 17 00:00:00 2001 From: rishabh3112 Date: Tue, 19 Mar 2019 12:37:55 +0530 Subject: [PATCH] fix(add): add types --- packages/generators/add-generator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/generators/add-generator.ts b/packages/generators/add-generator.ts index dd099f9592e..908621ce1cc 100644 --- a/packages/generators/add-generator.ts +++ b/packages/generators/add-generator.ts @@ -167,7 +167,7 @@ export default class AddGenerator extends Generator { Input("topScope", "What do you want to add to topScope?"), ]) .then((topScopeAnswer: { - topScope: string + topScope: string; }) => { this.configuration.config.topScope.push(topScopeAnswer.topScope); done();