getInterface.d.ts 639 B

1234567891011121314151617181920212223
  1. /**
  2. * 获取热点接入信息 请求参数定义
  3. * @apiName device.base.getInterface
  4. */
  5. export interface IDeviceBaseGetInterfaceParams {
  6. }
  7. /**
  8. * 获取热点接入信息 返回结果定义
  9. * @apiName device.base.getInterface
  10. */
  11. export interface IDeviceBaseGetInterfaceResult {
  12. /** 热点ssid */
  13. ssid: string;
  14. /** 热点mac地址 */
  15. macIp: string;
  16. }
  17. /**
  18. * 获取热点接入信息
  19. * @apiName device.base.getInterface
  20. * @supportVersion ios: 2.4.0 android: 2.4.0
  21. */
  22. export declare function getInterface$(params: IDeviceBaseGetInterfaceParams): Promise<IDeviceBaseGetInterfaceResult>;
  23. export default getInterface$;