diff --git a/mx-interpreter/types/workflow.ts b/mx-interpreter/types/workflow.ts
index ac9fda22..36c6d14d 100644
--- a/mx-interpreter/types/workflow.ts
+++ b/mx-interpreter/types/workflow.ts
@@ -11,7 +11,7 @@ export type Meta = typeof meta[number];
export type SelectorArray = string[];
-type RegexableString = string | { '$regex':string };
+type RegexableString = string | { '$regex': string };
type BaseConditions = {
'url': RegexableString,
@@ -20,9 +20,9 @@ type BaseConditions = {
} & Record;
export type Where =
-Partial<{ [key in NAryOperator]: Where[] }> & // either a logic operator (arity N)
-Partial<{ [key in UnaryOperator]: Where }> & // or an unary operator
-Partial; // or one of the base conditions
+ Partial<{ [key in NAryOperator]: Where[] }> & // either a logic operator (arity N)
+ Partial<{ [key in UnaryOperator]: Where }> & // or an unary operator
+ Partial; // or one of the base conditions
type MethodNames = {
[K in keyof T]: T[K] extends Function ? K : never;