pianello-web-app/frontend/src/app.d.ts
Alessio Davoli f4ec06a1b1
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Updates on routes and path
2023-07-10 19:48:11 +02:00

21 lines
345 B
TypeScript

// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
// interface Locals {}
// interface PageData {}
// interface Platform {}
interface Route {
id: number;
name: string;
duration: number;
image: string;
}
}
}
export {
Route
};