wechatpay-partner-v3
Version:
微信支付v3版本的SDK,基于wechatpay-node-v3 v2.2.1的修改,增加对合作伙伴模式的支持
8 lines (7 loc) • 431 B
TypeScript
import { Output } from './interface-v2';
import { IPayRequest } from './pay-request.interface';
export declare class PayRequest implements IPayRequest {
upload(url: string, params: Record<string, any>, headers: Record<string, any>): Promise<Output>;
post(url: string, params: Record<string, any>, headers: Record<string, any>): Promise<Output>;
get(url: string, headers: Record<string, any>): Promise<Output>;
}