UNPKG
cv-dialog-sdk
Version:
latest (4.31.14)
4.31.14
4.31.13
4.31.12
4.31.11
4.31.10
4.31.9
4.31.8
4.31.7
4.31.6
4.31.5
4.31.4
4.31.3
4.31.2
4.31.1
4.31.0
4.30.4
4.30.3
4.30.2
4.30.1
4.30.0
4.29.6
4.29.5
4.29.4
4.29.3
4.29.2
4.29.1
4.29.0
4.28.1
4.28.0
4.27.1
4.27.0
4.26.13
4.26.12
4.26.11
4.26.10
4.26.9
4.26.8
4.26.7
4.26.6
4.26.5
4.26.4
4.26.3
4.26.2
4.26.1
4.26.0
4.25.0
4.24.0
4.23.0
4.22.0
4.21.0
4.20.0
4.19.3
4.19.0
4.18.2
4.18.1
4.18.0
4.17.1
4.17.0
4.16.2
4.16.1
4.16.0
4.15.0
4.14.0
4.13.1
4.13.0
4.12.0
4.11.0
4.10.0
4.9.0
4.8.0
4.7.0
4.6.0
4.5.5
4.5.4
4.5.3
4.5.2
4.5.1
4.5.0
4.4.4
4.4.3
4.4.2
4.2.1
4.2.0
4.1.4
4.1.1
4.1.0
4.0.0
3.2.3
3.2.2
3.2.1
3.2.0
3.1.4
3.1.3
3.1.2
3.1.0
3.0.1
3.0.0
2.0.0
Catavolt Dialog Javascript API
cv-dialog-sdk
/
src
/
catavolt
/
models
/
Filter.ts
13 lines
(10 loc)
•
239 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
FilterOperator
}
from
'./types'
;
/** * ********************************* */
export
interface
Filter
{
readonly
not
:
boolean
;
readonly
operand1
:
any
;
readonly
operator
:
FilterOperator
;
readonly
operand2
:
any
; }