import type { Comparator } from "./Comparator.js"; import type { Operand } from "./Operand.js"; import type { JsonValue } from "./serde_json/JsonValue.js"; export type TwmCondition = { "compare": { left: Operand; op: Comparator; right: JsonValue; }; } | { "and": [TwmCondition, TwmCondition]; } | { "or": [TwmCondition, TwmCondition]; } | { "not": TwmCondition; }; //# sourceMappingURL=TwmCondition.d.ts.map