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.
14 lines (13 loc) • 517 B
TypeScript
import type { AxiosRequestConfig } from "axios";
import type { ClientContextProvider } from "../context/clientContext";
import type { RequestFlag } from "../../helper/api/requestBuilder";
import { CookiesHelper, ErrorHandler } from "../../..";
type BaseServiceParameters = {
context: ClientContextProvider;
errorHandler: ErrorHandler;
cookiesHelper: CookiesHelper;
};
type ServiceRequestOptions = AxiosRequestConfig & {
flags?: RequestFlag;
};
export { BaseServiceParameters, ServiceRequestOptions };