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) 534 B
import { BaseService } from "./baseService"; import type { AccountData } from "../../types/banking/account/accountdata"; import type { AccountServiceParameters } from "../../types/api/service/accountService"; declare class AccountService extends BaseService { protected endpoint: string; constructor(data: AccountServiceParameters); get(accountId: number): Promise<import("../..").ApiResponse<AccountData>>; getLimits(accountId: number): Promise<import("../..").ApiResponse<AccountData>>; } export { AccountService };