Represents a single argument schema entry for a command.
// A required string argument{ type: 'string', required: true } Copy
// A required string argument{ type: 'string', required: true }
// An optional integer argument with a default value{ type: 'int', default: 0 } Copy
// An optional integer argument with a default value{ type: 'int', default: 0 }
// A rest argument that captures all remaining input{ type: 'string', rest: true } Copy
// A rest argument that captures all remaining input{ type: 'string', rest: true }
Optional
Represents a single argument schema entry for a command.
Example
Example
Example