mirror of
https://github.com/fergalmoran/xtreamium.git
synced 2025-12-25 19:20:54 +00:00
22 lines
523 B
TypeScript
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;
|
|
}
|