dingtalk-jsapi
Version:
钉钉 模块化 多端统一 API
23 lines (22 loc) • 619 B
TypeScript
export declare const apiName = "biz.live.destroyPlayer";
/**
* 销毁播放器 请求参数定义
* @apiName biz.live.destroyPlayer
*/
export interface IBizLiveDestroyPlayerParams {
[key: string]: any;
}
/**
* 销毁播放器 返回结果定义
* @apiName biz.live.destroyPlayer
*/
export interface IBizLiveDestroyPlayerResult {
[key: string]: any;
}
/**
* 销毁播放器
* @apiName biz.live.destroyPlayer
* @supportVersion ios: 4.2.5 android: 4.2.5
*/
export declare function destroyPlayer$(params: IBizLiveDestroyPlayerParams): Promise<IBizLiveDestroyPlayerResult>;
export default destroyPlayer$;