Type alias BindingEquals<T>

BindingEquals<T>: [operator: "eq", binding1: Binding<T>, binding2: Binding<T>]

Checks if the first parameter (T) is equal to the second parameter (T).

Type Parameters

  • T

Example

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