adds height to route drawing

This commit is contained in:
Christian Beutel
2024-04-23 01:39:20 +02:00
parent 8d7ed16904
commit 8a3894106f
18 changed files with 176 additions and 96 deletions

View File

@@ -1,4 +1,4 @@
interface ValhallaResponse {
interface ValhallaRouteResponse {
trip: {
legs: {
shape: string;
@@ -6,4 +6,8 @@ interface ValhallaResponse {
};
}
export { type ValhallaResponse }
interface ValhallaHeightResponse {
height: number[];
}
export { type ValhallaRouteResponse, type ValhallaHeightResponse }