nestwhats
Version:
A whatsapp-web.js wrapper for NestJS to create WhatsApp bots
7 lines (6 loc) • 350 B
TypeScript
import { ContextType, ExecutionContext } from "@nestjs/common";
import { NestWhatsArgumentsHost } from "./nestwhats-arguments-host";
export type NestWhatsContextType = "nestwhats" | ContextType;
export declare class NestWhatsExecutionContext extends NestWhatsArgumentsHost {
static create(context: ExecutionContext): NestWhatsExecutionContext;
}