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