From c88a9951e4dcc653245bfbacd8c632e39fa3d8f8 Mon Sep 17 00:00:00 2001 From: Don Denton Date: Mon, 7 Feb 2022 15:19:34 -0500 Subject: [PATCH] Fix type FetchContentResultBase['url'] (#2425) Co-authored-by: Jonathan Neal --- packages/astro/src/@types/astro.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index dd43cba5c..ea1dc6f4d 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -188,7 +188,7 @@ export type FetchContentResultBase = { source: string; html: string; }; - url: URL; + url: string; }; export type GetHydrateCallback = () => Promise<(element: Element, innerHTML: string | null) => void>;