2025-10-25 22:04:41 +02:00
|
|
|
// 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;
|
2025-10-26 14:48:30 +01:00
|
|
|
requestId: string;
|
2025-10-25 22:04:41 +02:00
|
|
|
}
|
|
|
|
|
// interface PageData {}
|
|
|
|
|
// interface PageState {}
|
|
|
|
|
// interface Platform {}
|
|
|
|
|
}
|
|
|
|
|
interface Window {
|
|
|
|
|
sidebar: {
|
|
|
|
|
addPanel: () => void;
|
|
|
|
|
};
|
|
|
|
|
opera: object;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export {};
|