UNPKG

ggez-banking-sdk

Version:

A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.

14 lines (13 loc) 601 B
import { Deposit, DepositInterchange, DepositPaymentGateway, TransferReceiving, TransferSending, Withdraw, WithdrawInterchange, WithdrawOrder, WithdrawPurchaseInterchange } from "."; type Limits = { deposit: Deposit; deposit_interchange: DepositInterchange; deposit_payment_gateway: DepositPaymentGateway; withdraw: Withdraw; withdraw_order: WithdrawOrder; withdraw_atm_interchange: WithdrawInterchange; withdraw_purchase_interchange: WithdrawPurchaseInterchange; transfer_sending: TransferSending; transfer_recieving: TransferReceiving; }; export type { Limits };