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

24 lines
541 B
TypeScript
Raw Normal View History

export declare global {
2022-02-15 23:42:46 +03:00
import { ApiClient, Events } from 'jellyfin-apiclient';
interface Window {
2022-02-15 23:42:46 +03:00
ApiClient: ApiClient;
Events: Events;
NativeShell: any;
2023-12-31 17:07:19 -08:00
Loading: {
show();
hide();
}
}
interface DocumentEventMap {
'viewshow': CustomEvent;
}
const __JF_BUILD_VERSION__: string;
const __PACKAGE_JSON_NAME__: string;
const __PACKAGE_JSON_VERSION__: string;
2024-03-23 15:31:14 +01:00
const __USE_SYSTEM_FONTS__: string;
const __WEBPACK_SERVE__: string;
}