obby-client for TypeScript
    Preparing search index...

    Type Alias Conversation

    A private conversation with one other person.

    type Conversation = {
        log: MessageLog;
        nick: string;
        read_marker: string | null;
        typing: CaseFolded[];
        unread: number;
    }
    Index

    What was said.

    nick: string

    Their nick, as they spell it.

    read_marker: string | null

    The read marker timestamp the server last confirmed.

    typing: CaseFolded[]

    Who is composing a message here right now.

    unread: number

    Messages since the last read marker.