From 34b55d206c5048b4abacf68c663261f494c888a2 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Thu, 2 Jun 2022 18:09:51 -0400 Subject: feat(helpCommand): add arguments --- src/commands/dev/superUser.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/commands/dev') diff --git a/src/commands/dev/superUser.ts b/src/commands/dev/superUser.ts index 57e2b86..d62ac8e 100644 --- a/src/commands/dev/superUser.ts +++ b/src/commands/dev/superUser.ts @@ -15,12 +15,12 @@ export default class SuperUserCommand extends BushCommand { ownerOnly: true, helpArgs: [ { - id: 'action', + name: 'action', description: 'Whether to add or remove a user from the superuser list.', - readableType: 'add|remove' + type: "'add'|'remove'" }, { - id: 'user', + name: 'user', description: 'The user to add/remove from the superuser list.', type: 'user', match: 'restContent' -- cgit