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.

15 lines (14 loc) 402 B
import { DailyLimit, DepositMonthly, DepositYearly, GlobalDailyLimit } from "."; type Deposit = { monthly: DepositMonthly; yearly: DepositYearly; daily: GlobalDailyLimit; manual: DailyLimit; manual_refund: DailyLimit; general: DailyLimit; bank_transfer: DailyLimit; check: DailyLimit; payment_gateway: DailyLimit; crypto: DailyLimit; }; export type { Deposit };