Optional
Readonly
paramCount?: number | RangeThe function's parameter count.
If unspecified or negative, the option accepts unlimited parameters.
If zero, the option accepts unknown number of parameters (use with WithFunction.skipCount).
If positive, then the option expects exactly this number of parameters.
If a range, then the option expects between min
and max
parameters.
Optional
skipCount?: numberThe number of remaining arguments to skip. It is meant to be changed by the callback. (The parser does not alter this value.)
Defines attributes for the function option.