zhizhi/node_modules/dingtalk-jsapi/api/biz/alipay/bindAlipay.d.ts

25 lines
727 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 绑定支付宝 请求参数定义
* @apiName biz.alipay.bindAlipay
*/
export interface IBizAlipayBindAlipayParams {
/** 绑定支付宝所在的业务场景,请和服务端约定好 */
bizType: string;
/** 是否显示支付宝授权协议弹框 默认true */
showLicense?: boolean;
}
/**
* 绑定支付宝 返回结果定义
* @apiName biz.alipay.bindAlipay
*/
export interface IBizAlipayBindAlipayResult {
}
/**
* 绑定支付宝
* @apiName biz.alipay.bindAlipay
* @supportVersion ios: 6.3.15 android: 6.3.15
* @author Android峰砺 iOS 边枫
*/
export declare function bindAlipay$(params: IBizAlipayBindAlipayParams): Promise<IBizAlipayBindAlipayResult>;
export default bindAlipay$;