mirror of
https://github.com/pupperpowell/bibdle.git
synced 2026-02-04 10:54:44 -05:00
19 lines
443 B
TypeScript
19 lines
443 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 {};
|