-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/runtime/index.ts b/src/runtime/index.ts
index 67cbf9a..2d9ab87 100644
--- a/src/runtime/index.ts
+++ b/src/runtime/index.ts
@@ -7,6 +7,7 @@ interface InterventionRequestImageModifiers extends ImageModifiers {
sharpen?: number
interlace?: boolean
grayscale?: boolean
+ greyscale?: boolean
flip?: 'h' | 'v'
crop?: string
blur?: number
@@ -29,6 +30,7 @@ export function getImage(
sharpen,
interlace,
grayscale,
+ greyscale,
flip,
crop,
blur,
@@ -38,7 +40,7 @@ export function getImage(
} = modifiers as Partial