nestwhats
Version:
A whatsapp-web.js wrapper for NestJS to create WhatsApp bots
8 lines (7 loc) • 319 B
TypeScript
import { Message } from "whatsapp-web.js";
import { CommandsRegistryService } from "./commands-registry.service";
export declare class CommandsService {
private readonly registry;
constructor(registry: CommandsRegistryService);
handle(message: Message, clientName: string, prefix: string): Promise<void>;
}