chore(types): type missing in the CI

pull/2308/head
Elian Doran 2025-06-14 23:54:19 +07:00
parent 6f5c66f324
commit 1848d5dc96
No known key found for this signature in database
1 changed files with 4 additions and 1 deletions

@ -1,3 +1,6 @@
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;