This repository has been archived on 2026-02-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
serengo/src/app.d.ts
2025-09-27 11:53:51 +02:00

16 lines
434 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 {};