UNPKG

nestwhats

Version:

A whatsapp-web.js wrapper for NestJS to create WhatsApp bots

11 lines (10 loc) 423 B
import { ClientOptions } from "whatsapp-web.js"; export interface NestWhatsClientOptions extends ClientOptions { name: string; prefix: string; printQR: boolean; ignoreSelf?: boolean; } export declare const NESTWHATS_DEFAULT_NAME = "default"; export declare const NESTWHATS_DEFAULT_PREFIX = "!"; export declare function resolveClientOptions(options: Partial<NestWhatsClientOptions>): NestWhatsClientOptions;