Type alias BindingAnd

BindingAnd: [operator: "and", bindings: Binding<boolean>[]]

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

Example

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