UNPKG

payme-integration

Version:

NestJS integration module for Payme payment system

11 lines (10 loc) 296 B
import { TransactionMethods } from '../../types/transaction-methods'; import { IAccount } from '../../payme.module'; export declare class CheckPerformTransactionRequestDto { method: TransactionMethods; params: { amount: number; account: IAccount; }; id: number; }