We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e08bd3a commit 721410dCopy full SHA for 721410d
types/index.d.ts
@@ -157,4 +157,5 @@ interface ConditionProperties {
157
type NestedCondition = ConditionProperties | TopLevelCondition;
158
type AllConditions = { all: NestedCondition[] };
159
type AnyConditions = { any: NestedCondition[] };
160
-export type TopLevelCondition = AllConditions | AnyConditions;
+type NotConditions = { not: NestedCondition };
161
+export type TopLevelCondition = AllConditions | AnyConditions | NotConditions;
0 commit comments