2024-01-21 20:28:37 -05:00
|
|
|
// See https://kit.svelte.dev/docs/types#app
|
|
|
|
|
// for information about these interfaces
|
|
|
|
|
declare global {
|
2024-01-21 23:51:15 -05:00
|
|
|
namespace App {
|
|
|
|
|
// interface Error {}
|
2024-01-25 19:50:26 -05:00
|
|
|
interface Locals {
|
|
|
|
|
user: User
|
|
|
|
|
}
|
2024-01-21 23:51:15 -05:00
|
|
|
// interface PageData {}
|
|
|
|
|
// interface PageState {}
|
|
|
|
|
// interface Platform {}
|
|
|
|
|
}
|
2024-01-25 19:50:26 -05:00
|
|
|
|
|
|
|
|
interface User {
|
|
|
|
|
id: string
|
|
|
|
|
username: string
|
|
|
|
|
password?: string
|
|
|
|
|
}
|
2024-01-21 20:28:37 -05:00
|
|
|
}
|
|
|
|
|
|
2024-01-21 23:51:15 -05:00
|
|
|
export {}
|