mirror of
https://github.com/thiloho/archtika.git
synced 2025-11-22 10:51:36 +01:00
21 lines
360 B
TypeScript
21 lines
360 B
TypeScript
|
|
// See https://kit.svelte.dev/docs/types#app
|
||
|
|
// for information about these interfaces
|
||
|
|
interface User {
|
||
|
|
id: string;
|
||
|
|
username: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
declare global {
|
||
|
|
namespace App {
|
||
|
|
// interface Error {}
|
||
|
|
interface Locals {
|
||
|
|
user: User;
|
||
|
|
}
|
||
|
|
// interface PageData {}
|
||
|
|
// interface PageState {}
|
||
|
|
// interface Platform {}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export type {};
|