Initial commit

This commit is contained in:
hiperman
2025-12-04 00:33:37 -05:00
commit 7ca0a21283
798 changed files with 190424 additions and 0 deletions

21
frontend/src/app.d.ts vendored Normal file
View File

@@ -0,0 +1,21 @@
// See https://svelte.dev/docs/kit/types#app.d.ts
// for information about these interfaces
import type { ApiClient } from '$lib/server/api';
import type { User } from 'lucide-svelte';
declare global {
namespace App {
// interface Error {}
interface Locals {
authToken: string | null;
api: ApiClient;
user: User;
}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};