@calf/dotypay
Version:
Dotypay module of Calf framework.
13 lines (12 loc) • 418 B
TypeScript
import { Payment } from "../namespaces/payment.namespace";
import { CommonOperation } from "./common.operation";
/**
* Payment operation
* @description Operation that executes payment
*/
export declare class PaymentOperation extends CommonOperation<Payment.Interfaces.IOperationData, Payment.Interfaces.IResponse> {
/**
* Execute
*/
execute(): Promise<Payment.Interfaces.IResponse>;
}