react-chromecast
Version:
A abstraction of cast lib to react.js
15 lines • 583 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;
}
//# sourceMappingURL=CastReceiver.d.ts.map