1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Add crash reporter

This commit is contained in:
Bill Thornton 2023-10-27 00:20:07 -04:00
parent f6bc738bcb
commit 256c2412e0
6 changed files with 192 additions and 12 deletions

4
src/global.d.ts vendored
View file

@ -1,6 +1,10 @@
export declare global {
import { ApiClient, Events } from 'jellyfin-apiclient';
// Globals declared in webpack
declare const __USE_SYSTEM_FONTS__: boolean;
declare const __WEBPACK_SERVE__: boolean;
interface Window {
ApiClient: ApiClient;
Events: Events;