three60/src/app.d.ts
Markus Brueckner 1547af6ae0 Initial commit
2024-11-25 08:40:14 +01:00

19 lines
379 B
TypeScript

// See https://svelte.dev/docs/kit/types#app.d.ts
import { Session } from "./lib/session/session";
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
interface Locals {
session: Session | null,
userId: number | null
}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export { };