UNPKG

@wiqotech/nestjs-digiflazz

Version:
6 lines (5 loc) 316 B
import { AxiosInstance, AxiosRequestConfig } from "axios"; export declare abstract class BaseService { protected httpClient: AxiosInstance; protected handleRequest(method: 'get' | 'post' | 'put' | 'patch' | 'delete', path: string, payload?: Record<string, any>, config?: AxiosRequestConfig): Promise<any>; }