Files
eg-qna/frontend/src/app.d.ts
Lectom C Han dd89e5fc90
Some checks failed
Deploy to Production / Deploy (push) Failing after 4s
svelt kit test
2025-07-25 14:43:32 +09:00

16 lines
323 B
TypeScript

// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
interface Locals {
user: import('lucia').User | null;
session: import('lucia').Session | null;
}
// interface PageData {}
// interface Platform {}
}
}
export {};