obby-client for TypeScript
    Preparing search index...

    Type Alias MessageLog

    The messages of one channel or conversation, ordered and bounded.

    type MessageLog = {
        by_msgid: { [key in string]?: MessageKey };
        messages: ChatMessage[];
        retention: number;
    }
    Index
    by_msgid: { [key in string]?: MessageKey }
    messages: ChatMessage[]
    retention: number