Type alias BindingNotEquals<T>

BindingNotEquals<T>: [operator: "neq", binding1: Binding<T>, binding2: Binding<T>]

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

Type Parameters

  • T

Example

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