summaryrefslogtreecommitdiff
path: root/includes/external/matrix/node_modules/matrix-js-sdk/lib/models/search-result.d.ts
blob: d39ea0eb4ef7ff6e04e592e01acf36be290a9729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { EventContext } from "./event-context";
import { EventMapper } from "../event-mapper";
import { ISearchResult } from "../@types/search";
export declare class SearchResult {
    readonly rank: number;
    readonly context: EventContext;
    /**
     * Create a SearchResponse from the response to /search
     */
    static fromJson(jsonObj: ISearchResult, eventMapper: EventMapper): SearchResult;
    /**
     * Construct a new SearchResult
     *
     * @param rank -   where this SearchResult ranks in the results
     * @param context -  the matching event and its
     *    context
     */
    constructor(rank: number, context: EventContext);
}
//# sourceMappingURL=search-result.d.ts.map