MrShi
8 天以前 1ab34d6347171b10acf78fcd3d6678eac0483bae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export declare const apiName = "internal.util.authAlipayInvoice";
/**
 * 唤起支付宝, 获取授权auto_code 请求参数定义
 * @apiName internal.util.authAlipayInvoice
 */
export interface IInternalUtilAuthAlipayInvoiceParams {
    [key: string]: any;
}
/**
 * 唤起支付宝, 获取授权auto_code 返回结果定义
 * @apiName internal.util.authAlipayInvoice
 */
export interface IInternalUtilAuthAlipayInvoiceResult {
    [key: string]: any;
}
/**
 * 唤起支付宝, 获取授权auto_code
 * @apiName internal.util.authAlipayInvoice
 * @supportVersion  ios: 4.1 android: 4.1
 */
export declare function authAlipayInvoice$(params: IInternalUtilAuthAlipayInvoiceParams): Promise<IInternalUtilAuthAlipayInvoiceResult>;
export default authAlipayInvoice$;