Represents the response for a simple time series data request.

interface ESPSimpleTSDataResponse {
    fetchNext?: () => Promise<ESPSimpleTSDataResponse>;
    hasNext: boolean;
    tsData: ESPTSData[];
}

Properties

fetchNext?: () => Promise<ESPSimpleTSDataResponse>
hasNext: boolean
tsData: ESPTSData[]