Files
Lazuli/src/app.d.ts

22 lines
431 B
TypeScript
Raw Normal View History

2024-01-21 20:28:37 -05:00
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
2024-01-25 19:50:26 -05:00
interface Locals {
user: User
}
// 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
}
export {}