started refactoring (app) layout

This commit is contained in:
Eclypsed
2024-01-25 19:50:26 -05:00
parent 0ad1ace45b
commit 4fcfdc0ee6
7 changed files with 82 additions and 10 deletions

10
src/app.d.ts vendored
View File

@@ -3,11 +3,19 @@
declare global {
namespace App {
// interface Error {}
// interface Locals {}
interface Locals {
user: User
}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
interface User {
id: string
username: string
password?: string
}
}
export {}