bind.d.ts 475 B

123456789101112131415161718192021
  1. /**
  2. * iot设备绑定 请求参数定义
  3. * @apiName biz.iot.bind
  4. */
  5. export interface IBizIotBindParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * iot设备绑定 返回结果定义
  10. * @apiName biz.iot.bind
  11. */
  12. export interface IBizIotBindResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * iot设备绑定
  17. * @apiName biz.iot.bind
  18. * @supportVersion ios: 4.6.34 android: 4.6.34
  19. */
  20. export declare function bind$(params: IBizIotBindParams): Promise<IBizIotBindResult>;
  21. export default bind$;