wa-chat-server-mluvii
Version:
Mluvii adapter for the modules wa-chat-server
13 lines (12 loc) • 493 B
TypeScript
import { Router } from 'express';
import { Types } from 'wa-chat-server';
import { IWAChatServerMluviiConfig } from './interface/IWAChatServerMluviiConfig';
export declare class WAChatServerMluvii implements Types.IWAChatServerAdapter {
private config;
private waChatServer;
private api;
private log;
static mluviiSessionIdToWaSessionId: Map<string, string>;
constructor(config: IWAChatServerMluviiConfig, waChatServer: Types.IWAChatServer);
getRouter(): Router;
}