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) 278 B
import { AccountInfo, Conversion, TransactionFee, ReceiverInfo, Tax } from ".."; type Transfer = { account_info: AccountInfo; receiver_info: ReceiverInfo; fee: TransactionFee; tax: Tax; conversion: Conversion; notes: string; }; export type { Transfer };