zhizhi/node_modules/dingtalk-jsapi/api/biz/store/getPayUrl.d.ts

23 lines
558 B
TypeScript
Raw Normal View History

/**
*
* @apiName biz.store.getPayUrl
*/
export interface IBizStoreGetPayUrlParams {
params: string;
}
/**
*
* @apiName biz.store.getPayUrl
*/
export interface IBizStoreGetPayUrlResult {
payUrl: string;
unionPayUrl: string;
}
/**
*
* @apiName biz.store.getPayUrl
* @supportVersion ios: 4.3.7 android: 4.3.7
*/
export declare function getPayUrl$(params: IBizStoreGetPayUrlParams): Promise<IBizStoreGetPayUrlResult>;
export default getPayUrl$;