import { BaseCommandProcessor } from './BaseCommandProcessor'; import { Client, IMessage } from '../Client'; export interface DebugCommandRequest { cmd?: 'RoomList' | 'RoomInfo'; params?: any[]; } export interface DebugCommandResponse { type: 'DEBUG'; data: { req: DebugCommandRequest; res?: any; }; } export declare class DebugCommandProcessor extends BaseCommandProcessor { tester: string; onMessage(client: Client, msg: DebugCommandRequest, evt: IMessage): Promise; }