2023-07-10 17:44:06 +02:00
|
|
|
// 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 {}
|
2023-07-10 19:32:26 +02:00
|
|
|
|
|
|
|
interface Route {
|
2023-07-10 19:48:11 +02:00
|
|
|
id: number;
|
2023-07-10 19:32:26 +02:00
|
|
|
name: string;
|
|
|
|
duration: number;
|
|
|
|
image: string;
|
|
|
|
}
|
2023-07-10 17:44:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-10 19:32:26 +02:00
|
|
|
export {
|
|
|
|
Route
|
|
|
|
};
|