pianello-web-app/frontend/src/app.d.ts

21 lines
330 B
TypeScript
Raw Normal View History

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