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

Add jellyfin-apiclient declarations

This commit is contained in:
Dmitry Lyzo 2022-02-15 23:42:46 +03:00
parent 6e1845ef0c
commit 7ed78e0daa
4 changed files with 381 additions and 1 deletions

5
src/global.d.ts vendored
View file

@ -1,5 +1,8 @@
export declare global {
import { ApiClient, Events } from 'jellyfin-apiclient';
interface Window {
ApiClient: any;
ApiClient: ApiClient;
Events: Events;
}
}