ts-algochat
    Preparing search index...

    Interface ConversationData

    A conversation with another user

    interface ConversationData {
        lastFetchedRound?: number;
        messages: Message[];
        participant: string;
        participantPublicKey?: Uint8Array<ArrayBufferLike>;
    }
    Index

    Properties

    lastFetchedRound?: number
    messages: Message[]
    participant: string
    participantPublicKey?: Uint8Array<ArrayBufferLike>