type change

This commit is contained in:
Julian Krauser 2024-12-14 15:44:29 +01:00
parent 2f60cc51a3
commit 1b93b28258

View file

@ -16,7 +16,7 @@ export type ConditionStructure = (
| {
structureType: "nested";
invert?: boolean;
condition: Array<ConditionStructure>;
conditions: Array<ConditionStructure>;
}
) & {
concat: WhereType;