Spaces:
Paused
Paused
File size: 738 Bytes
9844ee9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | export declare enum InterfaceMode {
/**
* QR code page.
*/
QR = "QR",
/**
* Chat page.
*/
MAIN = "MAIN",
/**
* 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"
}
|