UNPKG

wechatpay-partner-v3

Version:

微信支付v3版本的SDK,基于wechatpay-node-v3 v2.2.1的修改,增加对合作伙伴模式的支持

24 lines (23 loc) 685 B
import { Output } from './interface-v2'; export interface IPayRequest { /** * post 请求 * @param url url * @param params body * @param headers 请求头 */ post(url: string, params: Record<string, any>, headers: Record<string, any>): Promise<Output>; /** * 上传文件 * @param url url * @param params body * @param headers 请求头 */ upload(url: string, params: Record<string, any>, headers: Record<string, any>): Promise<Output>; /** * get 请求 * @param url url * @param headers 请求头 */ get(url: string, headers: Record<string, any>): Promise<Output>; }