Fix type FetchContentResultBase['url'] (#2425)

Co-authored-by: Jonathan Neal <jonathantneal@hotmail.com>
This commit is contained in:
Don Denton 2022-02-07 15:19:34 -05:00 committed by GitHub
parent 41b659b12e
commit c88a9951e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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