UNPKG

@martcarrefour/robokassa

Version:

Robokassa Node.JS integration (Note: Original repository is now actively maintained)

13 lines 629 B
import { IRobokassaResponse, RobokassaUserParameterKey } from '../types'; type IResponseArgument = Pick<IRobokassaResponse, 'InvId' | 'OutSum'> & Record<RobokassaUserParameterKey, string>; export declare const buildExpectedReceivingSignatureString: ({ password2, response, }: { password2: string; response: IResponseArgument; }) => string; export declare const calculateReceivingSignatureValue: ({ hashAlgorithm, password2, response, }: { hashAlgorithm: string; password2: string; response: IResponseArgument; }) => string; export {}; //# sourceMappingURL=calculateReceivingSignatureValue.d.ts.map