nestwhats
Version:
A whatsapp-web.js wrapper for NestJS to create WhatsApp bots
11 lines (10 loc) • 502 B
TypeScript
import { OnModuleInit } from "@nestjs/common";
import { ExplorerService } from "../nestwhats-explorer.service";
import { CommandDiscovery } from "./command.discovery";
import { CommandsRegistryService } from "./commands-registry.service";
export declare class CommandsModule implements OnModuleInit {
private readonly explorerService;
private readonly registry;
constructor(explorerService: ExplorerService<CommandDiscovery>, registry: CommandsRegistryService);
onModuleInit(): void;
}