OperatorFn
ts
type OperatorFn = (...operationArgs) => OperatorReturn;Defined in: renderer/type.ts:342
Function signature for an operator.
Operators receive resolved primitive arguments and return a computed result.
Parameters
| Parameter | Type | Description |
|---|---|---|
...operationArgs | PrimitiveOperatorArg[] | Resolved primitive arguments |
Returns
Computed operator result
Since
1.0.0
Author
Simon Kovtyk