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.

11 lines (10 loc) 298 B
import { DepositGeneral, DepositManual, DepositMonthlyYearly, Others } from "."; type Deposit = { deposit_monthly_yearly: DepositMonthlyYearly; manual: DepositManual; general: DepositGeneral; bank_transfer: Others; check: Others; refund: Others; }; export type { Deposit };