import ServiceBase from "./ServiceBase"; /** * 支付服务 */ export default class PaymentService extends ServiceBase { offlinePay(): Promise; swipePay(): Promise; getPayResult(): Promise; cancel(): Promise; refund(): Promise; addPaymentLog(): Promise; wechatCallback(): Promise; alipayCallback(): Promise; exportPaymentLog(): Promise; }