From 0eced26ed86903e44cf4411782cb9496408e40ce Mon Sep 17 00:00:00 2001 From: Michael Fatemi Date: Mon, 11 Jan 2021 19:25:37 -0500 Subject: [PATCH] Fix types in imageUrl.ts --- src/lib/imageUrl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/imageUrl.ts b/src/lib/imageUrl.ts index c9762f9..3ef5633 100644 --- a/src/lib/imageUrl.ts +++ b/src/lib/imageUrl.ts @@ -7,6 +7,6 @@ const builder = ImageUrlBuilder(sanity); * Build a URL for an image based on specified attributes * @param {SanityImageSource} source The source image */ -export default function imageUrl(source: any): any { +export default function imageUrl(source: any) { return builder.image(source); }