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.

7 lines (6 loc) 690 B
import type { ICreateBankAccountData, IUpdateBankAccountData, IDeleteBankAccountData, IMakeBankAccountPrimaryData } from "../../../types"; declare const fillCreateBankAccountData: (data: ICreateBankAccountData) => import("../../..").UserData; declare const fillUpdateBankAccountData: (data: IUpdateBankAccountData) => import("../../..").UserData; declare const fillDeleteBankAccountData: (data: IDeleteBankAccountData) => import("../../..").UserData; declare const fillMakeBankAccountPrimaryData: (data: IMakeBankAccountPrimaryData) => import("../../..").UserData; export { fillCreateBankAccountData, fillUpdateBankAccountData, fillMakeBankAccountPrimaryData, fillDeleteBankAccountData, };