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
43 lines (42 loc) • 804 B
TypeScript
export declare enum InterfaceMode {
/**
* QR code page.
*/
QR = "QR",
/**
* Chat page.
*/
MAIN = "MAIN",
/**
* Connection.
*/
CONNECTION = "CONNECTION",
/**
* Loading page, waiting data from smartphone.
*/
SYNCING = "SYNCING",
/**
* Offline page, when there are no internet.
*/
OFFLINE = "OFFLINE",
/**
* Conflic page, when there are another whatsapp web openned.
*/
CONFLICT = "CONFLICT",
/**
* Blocked page, by proxy.
*/
PROXYBLOCK = "PROXYBLOCK",
/**
* Blocked page.
*/
TOS_BLOCK = "TOS_BLOCK",
/**
* Blocked page.
*/
SMB_TOS_BLOCK = "SMB_TOS_BLOCK",
/**
* Deprecated page.
*/
DEPRECATED_VERSION = "DEPRECATED_VERSION"
}