Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit 1848d5d

Browse files
committed
chore(types): type missing in the CI
1 parent 6f5c66f commit 1848d5d

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

apps/website/src/hooks.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
import { deLocalizeUrl } from '$lib/paraglide/runtime';
22

3-
export const reroute = (request) => deLocalizeUrl(request.url).pathname;
3+
export const reroute = (request: {
4+
url: URL;
5+
fetch: typeof fetch;
6+
}) => deLocalizeUrl(request.url).pathname;

0 commit comments

Comments
 (0)