nfcStop.d.ts 557 B

123456789101112131415161718192021
  1. /**
  2. * 停止NFC功能的读或写 请求参数定义
  3. * @apiName device.nfc.nfcStop
  4. */
  5. export interface IDeviceNfcNfcStopParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 停止NFC功能的读或写 返回结果定义
  10. * @apiName device.nfc.nfcStop
  11. */
  12. export interface IDeviceNfcNfcStopResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 停止NFC功能的读或写
  17. * @apiName device.nfc.nfcStop
  18. * @supportVersion ios: 4.3.9 android: 4.3.9
  19. */
  20. export declare function nfcStop$(params: IDeviceNfcNfcStopParams): Promise<IDeviceNfcNfcStopResult>;
  21. export default nfcStop$;