trips) adding initial commit

This commit is contained in:
2026-02-18 20:23:34 -05:00
commit 1068145261
67 changed files with 3602 additions and 0 deletions

17
src/app.d.ts vendored Normal file
View File

@@ -0,0 +1,17 @@
import type { DefaultSession } from '@auth/sveltekit';
declare global {
namespace App {
// interface Error {}
interface Locals {
auth(): Promise<DefaultSession | null>;
}
interface PageData {
session: DefaultSession | null;
}
// interface PageState {}
// interface Platform {}
}
}
export {};