command argument_object - Windower/packages GitHub Wiki
This object contains all information regarding an argument to the command handler.
count number or string
The amount of recurrences of the argument.
'*'if arbitrary. If the argument is marked as required,'*'implies at least one.
default any
Default value to use for optional parameters which are not provided. Has to be
nilon a required parameter.
name string
The name of the parameter. This is only used in syntax generation and does not need to correspond to the named variable of the function.
options table
Table of options to pass to the
argument.type.checkandargument.type.generatefunctions.
required boolean
trueif the argument is required,falseif not.
type argument_type
The type object representing the argument.