Type alias BindingOr

BindingOr: [operator: "or", bindings: Binding<boolean>[]]

Checks if any of the parameters (boolean) are true.

Example

{
"id": "MyConfigField1",
"type": "checkbox",
},
{
"id": "MyConfigField2",
"type": "checkbox",
},
{
// ...
"visible": ["or", ["value", "MyConfigField1"], ["value", "MyConfigField2"]],
},