index.uts 281 字节
Newer Older
DCloud-yyl's avatar
DCloud-yyl 已提交
1 2 3 4 5 6
import { RequestPaymentOptions, RequestPayment, RequestPaymentSuccessCallback } from "../interface.uts";
import { Alipay } from "./Alipay.uts"

export const requestPayment : RequestPayment = function (options : RequestPaymentOptions) {
	new Alipay().requestPayment(options)
};