mirror of
https://github.com/zadam/trilium.git
synced 2025-12-09 20:26:09 +08:00
chore(types): type missing in the CI
This commit is contained in:
parent
6f5c66f324
commit
1848d5dc96
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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue