Type alias BindingLessThan

BindingLessThan: [operator: "lt", binding1: Binding<number>, binding2: Binding<number>]

Checks if the first parameter (number) is less than the second parameter (number).

Example

{
"id": "MyConfigField",
"type": "number",
},
{
// ...
"visible": ["lt", ["value", "MyConfigField"], 123],
},