matrix-js-sdk

    Interface IResultRoomEvents

    interface IResultRoomEvents {
        count?: number;
        groups?: {
            room_id: {
                [value: string]: {
                    next_batch?: string;
                    order: number;
                    results: string[];
                };
            };
            sender: {
                [value: string]: {
                    next_batch?: string;
                    order: number;
                    results: string[];
                };
            };
        };
        highlights?: string[];
        next_batch?: string;
        results?: ISearchResult[];
        state?: { [roomId: string]: IStateEventWithRoomId[] };
    }
    Index

    Properties

    count?: number
    groups?: {
        room_id: {
            [value: string]: {
                next_batch?: string;
                order: number;
                results: string[];
            };
        };
        sender: {
            [value: string]: {
                next_batch?: string;
                order: number;
                results: string[];
            };
        };
    }
    highlights?: string[]
    next_batch?: string
    results?: ISearchResult[]
    state?: { [roomId: string]: IStateEventWithRoomId[] }
    MMNEPVFCICPMFPCPTTAAATR