openreplay/frontend/app/constants/alertConditions.ts
2023-01-13 17:08:36 +01:00

6 lines
191 B
TypeScript

export default [
{ value: '>', label: 'above' },
{ value: '>=', label: 'above or equal to' },
{ value: '<', label: 'below' },
{ value: '<=', label: 'below or equal to' },
] as const;