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) 279 B
import { BaseResult } from "../../banking/common/baseresult"; type ErrorHandler = (error: unknown) => void; type ApiResponse<T extends BaseResult> = { data: T; success: boolean; message: string; error: string | null; }; export type { ApiResponse, ErrorHandler };