kepler-chat/src/app.d.ts
Thomas G. Lopes f63c0b0ba0
api keys (#3)
Co-authored-by: Aidan Bleser <aidanbleser35@gmail.com>
2025-06-14 04:40:01 -07:00

18 lines
391 B
TypeScript

// See https://svelte.dev/docs/kit/types#app.d.ts
import type { Session, User } from 'better-auth';
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
interface Locals {
auth: () => Promise<{ session: Session; user: User } | null>;
}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};