forked from 4gray/iptvnator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.d.ts
More file actions
34 lines (29 loc) · 828 Bytes
/
Copy pathglobal.d.ts
File metadata and controls
34 lines (29 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import 'jest-extended';
import type {
ElectronBridgeApi,
ElectronBridgeDbOperationEvent,
ElectronDownloadItem,
} from './libs/shared/interfaces/src/lib/electron-api.interface';
declare module 'video.js' {
export interface VideoJsPlayer {
hlsQualitySelector(options?: Record<string, unknown>): void;
}
}
declare global {
type ElectronDbOperationEvent = ElectronBridgeDbOperationEvent;
interface Window {
__IPTVNATOR_CONFIG__?: {
BACKEND_URL?: string;
};
electron: ElectronBridgeApi;
process: NodeJS.Process;
require: NodeRequire;
}
/** Download item from the database */
type DownloadItem = ElectronDownloadItem;
}
// SystemJS module definition
declare const nodeModule: NodeModule;
interface NodeModule {
id: string;
}