Fix types in imageUrl.ts

This commit is contained in:
Michael Fatemi 2021-01-11 19:25:37 -05:00
parent 5ccfc42e06
commit 0eced26ed8

View File

@ -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);
}