wa-chat-server-mluvii
Version:
Mluvii adapter for the modules wa-chat-server
10 lines (9 loc) • 331 B
TypeScript
import { AxiosRequestConfig } from 'axios';
import { IRequestResponse } from '../../interface/IRequestResponse';
export declare class AxiosMock {
private calls;
private requestCounter;
constructor(calls: Array<IRequestResponse>);
axios(request: AxiosRequestConfig): Promise<Record<string, any>>;
end(): void;
}