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) 531 B
import { WithdrawMonthlyYearly, WithdrawManual, WithdrawGeneral, WithdrawResellerPurchase, WithdrawUserPurchase } from "."; type Withdraw = { withdraw_monthly_yearly: WithdrawMonthlyYearly; manual: WithdrawManual; general: WithdrawGeneral; reseller_purchase: WithdrawResellerPurchase; user_purchase: WithdrawUserPurchase; bank_transfer: WithdrawGeneral; check: WithdrawGeneral; cash: WithdrawGeneral; purchase: WithdrawGeneral; balance_inquiry: WithdrawGeneral; }; export type { Withdraw };