1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-11-24 20:06:55 +01:00
unleash.unleash/frontend/src/openapi/models/safeguardSchemaTriggerConditionOperator.ts
2025-11-10 16:52:07 +01:00

18 lines
476 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* The comparison operator for the threshold check.
*/
export type SafeguardSchemaTriggerConditionOperator =
(typeof SafeguardSchemaTriggerConditionOperator)[keyof typeof SafeguardSchemaTriggerConditionOperator];
// eslint-disable-next-line @typescript-eslint/no-redeclare
export const SafeguardSchemaTriggerConditionOperator = {
'>': '>',
'<': '<',
} as const;