Spaces:
Paused
Paused
File size: 847 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 | export declare enum InterfaceState {
/**
* When there are no internet.
*/
OFFLINE = "OFFLINE",
/**
* When the whatsapp web page is loading.
*/
OPENING = "OPENING",
/**
* When the whatsapp web is connecting to smartphone after QR code scan.
*/
PAIRING = "PAIRING",
/**
* When the whatsapp web is syncing messages with smartphone.
*/
SYNCING = "SYNCING",
/**
* When the whatsapp web is syncing messages with smartphone after a disconnection.
*/
RESUMING = "RESUMING",
/**
* When the whatsapp web is connecting to whatsapp server.
*/
CONNECTING = "CONNECTING",
/**
* When the whatsapp web is ready.
*/
NORMAL = "NORMAL",
/**
* When the whatsapp web couldn't connect to smartphone.
*/
TIMEOUT = "TIMEOUT"
}
|