Interface ResultsResponse<T>

Response to a Query that contains the results

interface ResultsResponse<T> {
    count: number;
    items: ResultItem<T>[];
    offset: number;
    type: DataType[];
}

Type Parameters

Properties

Properties

count: number
items: ResultItem<T>[]
offset: number
type: DataType[]