linear.numbercomparator
Home > @runlightyear/linear > NumberComparator
NumberComparator interface
Signature:interface NumberComparator
Optional Properties
Property | Modifiers | Type | Description |
---|---|---|---|
eq? | number | Equals constraint. | |
gt? | number | Greater-than constraint. Matches any values that are greater than the given value. | |
gte? | number | Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value. | |
in? | Array<number> | In-array constraint. | |
lt? | number | Less-than constraint. Matches any values that are less than the given value. | |
lte? | number | Less-than-or-equal constraint. Matches any values that are less than or equal to the given value. | |
neq? | number | Not-equals constraint. | |
nin? | Array<number> | Not-in-array constraint. |