Initial commit

This commit is contained in:
Jarek Krochmalski
2025-12-28 21:16:03 +01:00
commit 62e3c6439e
552 changed files with 104858 additions and 0 deletions

23
app.d.ts vendored Normal file
View File

@@ -0,0 +1,23 @@
// See https://svelte.dev/docs/kit/types#app.d.ts
// for information about these interfaces
import type { AuthenticatedUser } from '$lib/server/auth';
// Build-time constants injected by Vite
declare const __BUILD_DATE__: string | null;
declare const __BUILD_COMMIT__: string | null;
declare global {
namespace App {
// interface Error {}
interface Locals {
user: AuthenticatedUser | null;
authEnabled: boolean;
}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};