智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
LightingSystemApp-serial/.svn/pristine/21/217385a0472de6b9ba8aff7f16f...

22 lines
513 B

3 years ago
/**
* @file 获取用户手机号
*/
declare namespace my {
interface IGetPhoneNumberSuccessResult {
/**
* 完整的报文数据,前端需要将该报文发送到开发者服务端做验签和解密处理
*/
readonly response: string;
}
interface IGetPhoneNumberOptions {
success?(res: IGetPhoneNumberSuccessResult): void;
fail?(res: any): void;
}
/**
* 获取支付宝用户绑定的手机号
*/
function getPhoneNumber(options: IGetPhoneNumberOptions): void;
}