Stundenaufzeichnung/src/app.d.ts

19 lines
340 B
TypeScript
Raw Normal View History

2024-12-19 00:59:57 +01:00
// See https://svelte.dev/docs/kit/types#app.d.ts
2025-04-20 22:35:12 +02:00
import type { User } from "$lib/server/database";
2024-12-19 00:59:57 +01:00
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
2025-04-20 22:35:12 +02:00
interface Locals {
user: User
}
2024-12-19 00:59:57 +01:00
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};