index.uts 340 字节
Newer Older
DCloud-yyl's avatar
DCloud-yyl 已提交
1 2 3 4 5 6 7 8 9 10 11
import { Alipay } from './Alipay.uts'

export class UniPaymentAlipayProvider implements UniPaymentProvider {
	override id : String = "alipay"
	override description : String = "Alipay"
	override isAppExist : boolean | null = null

	override requestPayment(options : RequestPaymentOptions) {
		new Alipay().requestPayment(options)
	}
}