A new start

This commit is contained in:
Valknar XXX
2025-10-25 22:04:41 +02:00
commit be0fc11a5c
193 changed files with 25076 additions and 0 deletions

24
packages/frontend/src/app.d.ts vendored Normal file
View File

@@ -0,0 +1,24 @@
// See https://svelte.dev/docs/kit/types#app.d.ts
import type { AuthStatus } from "$lib/types";
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
interface Locals {
authStatus: AuthStatus;
}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
interface Window {
sidebar: {
addPanel: () => void;
};
opera: object;
}
}
export {};