1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/src/global.d.ts
2023-05-18 11:32:00 -04:00

13 lines
269 B
TypeScript

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