mirror of
https://github.com/thiloho/archtika.git
synced 2025-11-22 02:41:35 +01:00
18 lines
351 B
TypeScript
18 lines
351 B
TypeScript
// See https://kit.svelte.dev/docs/types#app
|
|
// for information about these interfaces
|
|
import type { User } from "$lib/db-schema";
|
|
|
|
declare global {
|
|
namespace App {
|
|
// interface Error {}
|
|
interface Locals {
|
|
user: User;
|
|
}
|
|
// interface PageData {}
|
|
// interface PageState {}
|
|
// interface Platform {}
|
|
}
|
|
}
|
|
|
|
export type {};
|