doc: 修复生成文档预览问题
This commit is contained in:
parent
4d23f71b5a
commit
a1ef27db98
41
index.d.ts
vendored
41
index.d.ts
vendored
@ -2,14 +2,10 @@
|
|||||||
/// <reference lib="esnext" />
|
/// <reference lib="esnext" />
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 支付宝支付,基于 React Native 的支付宝插件,支持Android/iOS。
|
|
||||||
*/
|
|
||||||
declare module "@uiw/react-native-alipay" {
|
|
||||||
/**
|
|
||||||
* 支付宝端支付
|
* 支付宝端支付
|
||||||
* 支付宝回调结果, 详情见 https://docs.open.alipay.com/204/105301
|
* 支付宝回调结果, 详情见 https://docs.open.alipay.com/204/105301
|
||||||
*/
|
*/
|
||||||
export interface OrderResultStr {
|
export interface OrderResultStr {
|
||||||
alipay_trade_app_pay_response: {
|
alipay_trade_app_pay_response: {
|
||||||
/**
|
/**
|
||||||
* 长度:64,商户网站唯一订单号 70501111111S001111119
|
* 长度:64,商户网站唯一订单号 70501111111S001111119
|
||||||
@ -50,9 +46,9 @@ declare module "@uiw/react-native-alipay" {
|
|||||||
},
|
},
|
||||||
sign: string;
|
sign: string;
|
||||||
sign_type: 'RSA2' | 'RSA';
|
sign_type: 'RSA2' | 'RSA';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 支付订单返回结果
|
* 支付订单返回结果
|
||||||
* @returns 成功返回
|
* @returns 成功返回
|
||||||
*
|
*
|
||||||
@ -74,7 +70,7 @@ declare module "@uiw/react-native-alipay" {
|
|||||||
* }
|
* }
|
||||||
* ```
|
* ```
|
||||||
*/
|
*/
|
||||||
export interface OrderResult {
|
export interface OrderResult {
|
||||||
/**
|
/**
|
||||||
* 支付返回结果:
|
* 支付返回结果:
|
||||||
* 支付宝支付返回结果,[支付宝文档地址](https://opendocs.alipay.com/open/204/105301#%E8%BF%94%E5%9B%9E%E7%BB%93%E6%9E%9C%E7%A4%BA%E4%BE%8B%EF%BC%88iOS%7CAndroid%EF%BC%89)
|
* 支付宝支付返回结果,[支付宝文档地址](https://opendocs.alipay.com/open/204/105301#%E8%BF%94%E5%9B%9E%E7%BB%93%E6%9E%9C%E7%A4%BA%E4%BE%8B%EF%BC%88iOS%7CAndroid%EF%BC%89)
|
||||||
@ -105,12 +101,12 @@ declare module "@uiw/react-native-alipay" {
|
|||||||
* "Error Domain=系统繁忙,请稍后再试 Code=1000 "(null)""
|
* "Error Domain=系统繁忙,请稍后再试 Code=1000 "(null)""
|
||||||
*/
|
*/
|
||||||
memo: string;
|
memo: string;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 快速登录授权,[支付宝文档](https://opendocs.alipay.com/open/218/105327#%E8%BF%94%E5%9B%9E%E7%BB%93%E6%9E%9C%E8%AF%B4%E6%98%8E)
|
* 快速登录授权,[支付宝文档](https://opendocs.alipay.com/open/218/105327#%E8%BF%94%E5%9B%9E%E7%BB%93%E6%9E%9C%E8%AF%B4%E6%98%8E)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export interface AuthResult {
|
export interface AuthResult {
|
||||||
/**
|
/**
|
||||||
* 长度:144,本次操作返回的结果数据。
|
* 长度:144,本次操作返回的结果数据。
|
||||||
* - `result_code` 具体状态码值请参见“result_code状态代码”。仅当resultStatus为“9000”且result_code为“200”时,代表授权成功。
|
* - `result_code` 具体状态码值请参见“result_code状态代码”。仅当resultStatus为“9000”且result_code为“200”时,代表授权成功。
|
||||||
@ -130,34 +126,33 @@ declare module "@uiw/react-native-alipay" {
|
|||||||
* 长度:无,保留参数,一般无内容。 处理成功
|
* 长度:无,保留参数,一般无内容。 处理成功
|
||||||
*/
|
*/
|
||||||
memo: string;
|
memo: string;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 支付
|
* 支付
|
||||||
* @param payInfo 支付详情
|
* @param payInfo 支付详情
|
||||||
* @returns result 支付宝回调结果 https://docs.open.alipay.com/204/105301
|
* @returns result 支付宝回调结果 https://docs.open.alipay.com/204/105301
|
||||||
*/
|
*/
|
||||||
export function alipay(payInfo: string): Promise<OrderResult>;
|
export function alipay(payInfo: string): Promise<OrderResult>;
|
||||||
/**
|
/**
|
||||||
* 快速登录授权
|
* 快速登录授权
|
||||||
* @param authInfoStr 验证详情
|
* @param authInfoStr 验证详情
|
||||||
* @returns result 支付宝回调结果 https://opendocs.alipay.com/open/218/105327
|
* @returns result 支付宝回调结果 https://opendocs.alipay.com/open/218/105327
|
||||||
*/
|
*/
|
||||||
export function authInfo(authInfoStr: string): Promise<AuthResult>;
|
export function authInfo(authInfoStr: string): Promise<AuthResult>;
|
||||||
/**
|
/**
|
||||||
* 获取当前 SDK 版本号
|
* 获取当前 SDK 版本号
|
||||||
* @return 当前 SDK 版本字符串
|
* @return 当前 SDK 版本字符串
|
||||||
*/
|
*/
|
||||||
export function getVersion(): Promise<string>;
|
export function getVersion(): Promise<string>;
|
||||||
/**
|
/**
|
||||||
* 设置支付宝跳转Scheme,仅 iOS
|
* 设置支付宝跳转Scheme,仅 iOS
|
||||||
* @param scheme scheme = `ap` + `APPID`
|
* @param scheme scheme = `ap` + `APPID`
|
||||||
* @platform ios
|
* @platform ios
|
||||||
*/
|
*/
|
||||||
export function setAlipayScheme(scheme: string): void;
|
export function setAlipayScheme(scheme: string): void;
|
||||||
/**
|
/**
|
||||||
* 设置支付宝沙箱环境,仅 Android
|
* 设置支付宝沙箱环境,仅 Android
|
||||||
* @param isSandBox
|
* @param isSandBox
|
||||||
* @platform android
|
* @platform android
|
||||||
*/
|
*/
|
||||||
export function setAlipaySandbox(isSandbox: boolean): void;
|
export function setAlipaySandbox(isSandbox: boolean): void;
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user