summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/src/@types/astro.ts2
1 files changed, 1 insertions, 1 deletions
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>;