//! Convenience re-exports for common usage.
//!
//! ```
//! use ably_chat::prelude::*;
//! ```
//!
//! Brings the client entry points, credentials, the room-scoped handles, the
//! error/result types, [`Page`], and the domain types into scope. Operation
//! builders (e.g. the value returned by `messages().send(..)`) are intentionally
//! *not* re-exported: they are awaited immediately and rarely named.
pub use crate;
pub use crateAuth;
pub use crate;
pub use cratePage;
// Room-scoped handles (ADR-0010).
pub use crateMessages;
pub use crateOccupancyHandle;
pub use crateReactions;
pub use crateRoom;
// Domain types (ADR-0007).
pub use crate;