@kustomer/chat-react-native
Version:
Kustomer Chat SDK wrapper for React Native
20 lines • 903 B
TypeScript
export declare enum KustomerClientStatus {
/** have not set the api key or options */
uninitialized = "uninitialized",
/** have set the api key and options */
configured = "configured",
/** .configure() failed. you can't use the SDK in this state */
configurationError = "configurationError",
/** is getting settings, biz schedules, and/or a tracking token
* @ios */
starting = "starting",
/** @ios have settings, schedules, and a tracking token */
started = "started",
/** @ios do not have settings, schedules, and a tracking token. happens before you call .start(), or if .start() errors out */
stopped = "stopped",
/** @ios is .started, plus is connected to pubsub */
connected = "connected",
/** @ios is .started, but is not connected to pubsub */
disconnected = "disconnected"
}
//# sourceMappingURL=KustomerClientStatus.d.ts.map