Skip to content

Commit

Permalink
fix(add): add types
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabh3112 committed Mar 19, 2019
1 parent dbc3e9e commit d4ce6f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/generators/add-generator.ts
Expand Up @@ -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();
Expand Down

0 comments on commit d4ce6f2

Please sign in to comment.