2025-07-02 14:49:23 +00:00
|
|
|
import type { AppData } from "$lib/server/classes/appdata";
|
2025-06-30 11:53:28 +00:00
|
|
|
|
2025-06-28 17:07:53 +00:00
|
|
|
// See https://svelte.dev/docs/kit/types#app.d.ts
|
|
|
|
|
// for information about these interfaces
|
|
|
|
|
declare global {
|
|
|
|
|
namespace App {
|
|
|
|
|
// interface Error {}
|
|
|
|
|
// interface PageData {}
|
|
|
|
|
// interface PageState {}
|
|
|
|
|
// interface Platform {}
|
2025-06-30 11:53:28 +00:00
|
|
|
|
|
|
|
|
interface Locals {
|
|
|
|
|
session: AppData | null
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-28 17:07:53 +00:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-30 11:53:28 +00:00
|
|
|
export { };
|