UNPKG

cspace-ui

Version:
26 lines (21 loc) 677 B
export const OP_AND = 'and'; export const OP_OR = 'or'; export const OP_CONTAIN = 'cont'; export const OP_EQ = 'eq'; export const OP_GT = 'gt'; export const OP_GTE = 'gte'; export const OP_LT = 'lt'; export const OP_LTE = 'lte'; export const OP_MATCH = 'match'; export const OP_RANGE = 'range'; export const OP_NULL = 'null'; export const OP_NOT_CONTAIN = 'ncont'; export const OP_NOT_EQ = 'neq'; export const OP_NOT_MATCH = 'nmatch'; export const OP_NOT_RANGE = 'nrange'; export const OP_NOT_NULL = 'nnull'; export const OP_GTC = 'gtc'; export const OP_LTC = 'ltc'; export const OP_COMPLETE = 'cmpl'; export const OP_NOT_COMPLETE = 'ncmpl'; export const OP_GROUP = 'grp';