zhizhi/node_modules/dingtalk-jsapi/api/device/base/getInterface.d.ts

24 lines
639 B
TypeScript
Raw Normal View History

/**
*
* @apiName device.base.getInterface
*/
export interface IDeviceBaseGetInterfaceParams {
}
/**
*
* @apiName device.base.getInterface
*/
export interface IDeviceBaseGetInterfaceResult {
/** 热点ssid */
ssid: string;
/** 热点mac地址 */
macIp: string;
}
/**
*
* @apiName device.base.getInterface
* @supportVersion ios: 2.4.0 android: 2.4.0
*/
export declare function getInterface$(params: IDeviceBaseGetInterfaceParams): Promise<IDeviceBaseGetInterfaceResult>;
export default getInterface$;