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) • 447 B
TypeScript
import type { BaseProxyParameters } from "../../types";
import { BaseProxy } from "./baseProxy";
declare class AccountProxy extends BaseProxy {
private accountService;
constructor(data: BaseProxyParameters);
get: (accountId: number) => Promise<import("../..").ApiResponse<import("../..").AccountData>>;
getLimits: (accountId: number) => Promise<import("../..").ApiResponse<import("../..").AccountData>>;
}
export { AccountProxy };