venom-bot
Version:
Venom is a high-performance system developed with JavaScript to create a bot for WhatsApp, support for creating any interaction, such as customer service, media sending, sentence recognition based on artificial intelligence and all types of design archite
20 lines (19 loc) • 539 B
TypeScript
import { onMode } from '../model/enum';
/**
* attribution and behavior change of a given event
*/
export declare class CallbackOnStatus {
statusFind: any;
constructor();
/**
* waiting for event change
* @param event returns event status
*/
onChange(event: (status: any) => void): Promise<void>;
/**
* here you can monitor user events
* @param type types of monitoring
* @param callback returns of monitoring
*/
on(type: onMode, callback: (state: any) => void): Promise<void>;
}