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.
9 lines (8 loc) • 349 B
TypeScript
import { AxiosInstance } from "axios";
import { BlockchainAPIConfig, ErrorHandler } from "../../types";
declare abstract class BaseBlockchainService {
private readonly errorHandler;
protected readonly axiosInstance: AxiosInstance;
constructor(config: BlockchainAPIConfig, errorHandler: ErrorHandler);
}
export { BaseBlockchainService };