feat: plan trip

This commit is contained in:
2026-07-13 18:22:58 +02:00
parent 9a97bf6088
commit 69ec5436f8
11 changed files with 228 additions and 28 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ class RoutePlanner {
async request() {
this.otpUrl.search = this.toURLSearchParams().toString();
return await $fetch(this.otpUrl.toString());
return await $fetch<OTPPlanOutput>(this.otpUrl.toString());
}
}