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.

10 lines (9 loc) 297 B
import { DailyLimit, GlobalDailyLimit, MonthlyLimit, YearlyLimit } from "."; type TransferSending = { monthly: MonthlyLimit; yearly: YearlyLimit; daily: GlobalDailyLimit; generic_transfer_send: DailyLimit; general_transfer_send: DailyLimit; }; export type { TransferSending };