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

Type declaration

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

Type declaration

Generated using TypeDoc