jellyfish-web/src/global.d.ts
2023-12-31 17:11:53 -08:00

17 lines
338 B
TypeScript

export declare global {
import { ApiClient, Events } from 'jellyfin-apiclient';
interface Window {
ApiClient: ApiClient;
Events: Events;
NativeShell: any;
Loading: {
show();
hide();
}
}
interface DocumentEventMap {
'viewshow': CustomEvent;
}
}