getPayUrl.d.ts 558 B

12345678910111213141516171819202122
  1. /**
  2. * 获取支付链接 请求参数定义
  3. * @apiName biz.store.getPayUrl
  4. */
  5. export interface IBizStoreGetPayUrlParams {
  6. params: string;
  7. }
  8. /**
  9. * 获取支付链接 返回结果定义
  10. * @apiName biz.store.getPayUrl
  11. */
  12. export interface IBizStoreGetPayUrlResult {
  13. payUrl: string;
  14. unionPayUrl: string;
  15. }
  16. /**
  17. * 获取支付链接
  18. * @apiName biz.store.getPayUrl
  19. * @supportVersion ios: 4.3.7 android: 4.3.7
  20. */
  21. export declare function getPayUrl$(params: IBizStoreGetPayUrlParams): Promise<IBizStoreGetPayUrlResult>;
  22. export default getPayUrl$;