beeta/frontend/src/app.d.ts
2025-08-03 21:53:15 -04:00

23 lines
No EOL
485 B
TypeScript

// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
interface Locals {
user?: {
id: number;
username: string;
};
}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
interface Window {
OvenPlayer: any;
Hls: any;
}
}
export {};