Files
phoenix/src/app.d.ts
Tobias Klemp e7bd070b3e init
2025-11-02 20:40:27 +01:00

16 lines
431 B
TypeScript

// See https://svelte.dev/docs/kit/types#app.d.ts
// for information about these interfaces
declare global {
namespace App {
interface Locals {
user: import('$lib/server/auth').SessionValidationResult['user']
session: import('$lib/server/auth').SessionValidationResult['session']
}
} // interface Error {}
// interface Locals {}
} // interface PageData {}
// interface PageState {}
// interface Platform {}
export {}