@martcarrefour/robokassa
Version:
Robokassa Node.JS integration (Note: Original repository is now actively maintained)
11 lines • 502 B
TypeScript
import { IRobokassaInitOptions } from './types/IRobokassaInitOptions';
import { IRobokassaOrder } from './types/IRobokassaOrder';
import { IRobokassaResponse } from './types';
export declare class Robokassa {
readonly options: Required<IRobokassaInitOptions>;
constructor(options: IRobokassaInitOptions);
generatePaymentUrl(order: IRobokassaOrder): string;
checkPayment(response: IRobokassaResponse): boolean;
private queryString;
}
//# sourceMappingURL=Robokassa.d.ts.map