Type alias BindingLessThanOrEqual

BindingLessThanOrEqual: [operator: "lte", binding1: Binding<number>, binding2: Binding<number>]

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

Example

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