23 lines
485 B
TypeScript
23 lines
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 {};
|