Files
xtreamium/frontend/src/utils/chromecast/CastReceiver.tsx
Fergal Moran f44fc3e5cc Not gonna work
2022-04-09 15:30:26 +01:00

22 lines
523 B
TypeScript

export default interface CastReceiver {
SessionRequest: new (...args: Array<any>) => any;
media: {
MediaInfo: new (p: string) => any;
LoadRequest: new (p: string) => any;
[key: string]: any;
};
Capability: {
[key: string]: string;
};
ApiConfig: new (...args: Array<any>) => any;
initialize: (
ApiConfig: any,
initSucess: (e: any) => void,
initError: (e: any) => void
) => void;
requestSession: (
initSucess: (e: any) => void,
initError: (e: any) => void
) => void;
}