securepay
Version:
https://www.securepay.com.au/
15 lines (14 loc) • 357 B
TypeScript
export declare const WechatPayEndpoints: {
/**
* Initial Wechat Pay
*/
INITIAL: (sandbox: boolean) => string;
/**
* Refund Wechat Pay
*/
REFUND: (sandbox: boolean, orderId: string) => string;
/**
* Retrieve Wechat Pay
*/
RETRIEVE: (sandbox: boolean, orderId: string, merchantCode: string) => string;
};