pause.d.ts 527 B

123456789101112131415161718192021
  1. /**
  2. * 暂停播放音频 请求参数定义
  3. * @apiName device.audio.pause
  4. */
  5. export interface IDeviceAudioPauseParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 暂停播放音频 返回结果定义
  10. * @apiName device.audio.pause
  11. */
  12. export interface IDeviceAudioPauseResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 暂停播放音频
  17. * @apiName device.audio.pause
  18. * @supportVersion ios: 2.8.0 android: 2.8.0
  19. */
  20. export declare function pause$(params: IDeviceAudioPauseParams): Promise<IDeviceAudioPauseResult>;
  21. export default pause$;