coyotte508's picture
coyotte508 HF staff
πŸ›‚ Support authentication
bd9595b
raw history blame
No virus
345 Bytes
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
// and what to do when importing types
import type { User } from '$lib/types/User';
declare global {
declare namespace App {
interface Locals {
user: null | User;
}
// interface PageData {}
// interface Error {}
// interface Platform {}
}
}