ConditionValue
ts
type ConditionValue =
| boolean
| number
| string
| OperationDefinition;Defined in: components/conditional.tsx:23
Represents all possible values that can be used in a condition.
- boolean: evaluated directly
- number: converted to truthy/falsy
- string: treated as a variable name
- Operation: evaluated dynamically
Since
1.0.0