File tree 3 files changed +19
-14
lines changed
3 files changed +19
-14
lines changed Original file line number Diff line number Diff line change @@ -129,12 +129,15 @@ export interface AuthResult {
129
129
}
130
130
/**
131
131
* 支付
132
- * @param payInfo 支付详情
132
+ * @param payInfo 支付详情,是后台拼接好的支付参数
133
133
* @returns result 支付宝回调结果 https://docs.open.alipay.com/204/105301
134
134
*/
135
135
export function alipay ( payInfo : string ) : Promise < OrderResult > ;
136
136
/**
137
137
* 快速登录授权
138
+ * - ⚠️ 注意授权成功返回结果是一个字符串,[返回内容](https://github.com/uiwjs/react-native-alipay/blob/74140a294e850884ed1851b9d2c2d2c00ee75003/index.d.ts#L89-L113)
139
+ * - ⚠️ 支付宝需要设置 Scheme 和 iOS添加原生代码,才能支持验证[回弹商家APP]的功能
140
+ * - ⚠️ 支付宝 `管理中心-支付宝开放平台` 需要签约 `APP支付宝登录`
138
141
* @param authInfoStr 验证详情
139
142
* @returns result 支付宝回调结果 https://opendocs.alipay.com/open/218/105327
140
143
*/
Original file line number Diff line number Diff line change
1
+ {
2
+ "compilerOptions" : {
3
+ },
4
+ "typedocOptions" : {
5
+ "entryPoints" : [" ./index.d.ts" ],
6
+ "out" : " typedoc" ,
7
+ "name" : " React Native Alipay" ,
8
+ "theme" : " minimal" ,
9
+ "excludeExternals" : true ,
10
+ "excludePrivate" : true ,
11
+ "excludeProtected" : true ,
12
+ "toc" : [" EntryClass" , " ImportantInterface" ],
13
+ "hideGenerator" : true
14
+ }
15
+ }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments