Type Alias ActionConfig

ActionConfig: {
    action: Action;
    alias?: string;
    description?: string;
    name: string;
}

Configuration for an action used with the argument parser.

Type declaration

  • action: Action

    The action to be performed.

  • Optionalalias?: string

    An optional alias for the action.

  • Optionaldescription?: string

    A description of the action.

  • name: string

    The name of the action.