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[];
    };
}

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[];
}