redsys-easy
Version:
Node JS interface for Redsys payment gateway
5 lines (4 loc) • 397 B
TypeScript
import type { SoapNotificationResponse } from '../types/api';
import type { SoapNotificationOutputParams } from '../types/output-params';
export declare const serializeAndSignSoapNotificationResponse: (merchantKey: string, response: SoapNotificationResponse) => string;
export declare const deserializeAndVerifySoapNotification: (merchantKey: string, xml: string) => SoapNotificationOutputParams;