智能照明系统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/86/863474705b26a6fa509aa4508a2...

27 lines
580 B

/**
* @file 升级支付宝最新版本
*/
declare namespace my {
interface IUpdateAlipayClientSuccessResult {
readonly success: boolean;
}
interface IUpdateAlipayClientOptions {
/**
* 跳转成功
*/
success?(res: IUpdateAlipayClientSuccessResult): void;
/**
* - 3:发生未知错误
*/
fail?(error: any): void;
}
namespace ap {
/**
* 打开支付宝客户端升级界面,用户可主动选择升级支付宝客户端。
*/
function updateAlipayClient(options: IUpdateAlipayClientOptions): void;
}
}