chore(types): type missing in the CI

This commit is contained in:
Elian Doran 2025-06-14 23:54:19 +03:00
parent 6f5c66f324
commit 1848d5dc96
No known key found for this signature in database

View File

@ -1,3 +1,6 @@
import { deLocalizeUrl } from '$lib/paraglide/runtime'; import { deLocalizeUrl } from '$lib/paraglide/runtime';
export const reroute = (request) => deLocalizeUrl(request.url).pathname; export const reroute = (request: {
url: URL;
fetch: typeof fetch;
}) => deLocalizeUrl(request.url).pathname;