PositionalArgument: { description: string; name: string; required?: boolean }

Defines a positional argument for a command.

const targetArg: PositionalArgument = {
name: 'target',
description: 'The target to apply the command to',
required: true
};