Alessio Davoli
f4ec06a1b1
All checks were successful
ci/woodpecker/push/build Pipeline was successful
21 lines
345 B
TypeScript
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
|
|
};
|