Interface StatisticsResponse

Response to a Query that contains statistics

interface StatisticsResponse {
    stats: {
        cutoff: string;
        numResults: number;
    }[];
    total: number;
}

Properties

Properties

stats: {
    cutoff: string;
    numResults: number;
}[]
total: number