@ably/chat - v0.10.0
    Preparing search index...

    Interface ChatRoomContextType

    Data type for ChatRoomContext.

    interface ChatRoomContextType {
        client: ChatClient;
        options?: RoomOptions;
        room: Promise<Room>;
        roomName: string;
    }
    Index

    Properties

    client: ChatClient

    The chat client used to create the room.

    options?: RoomOptions

    Options used to create the room.

    room: Promise<Room>

    Promise that resolves to the chat room.

    roomName: string

    The unique identifier of the room that promise will resolve to.