Initial, working login and logout with spotify

This commit is contained in:
Pablu23
2025-09-02 14:20:05 +02:00
commit 24b4647ab3
33 changed files with 5919 additions and 0 deletions

21
src/app.d.ts vendored Normal file
View File

@@ -0,0 +1,21 @@
// See https://svelte.dev/docs/kit/types#app.d.ts
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
interface Locals {
user: {
isLoggedIn: boolean;
email: string | undefined;
username: string | undefined | null;
}
}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export { };