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) } }