19 lines
563 B
TypeScript
19 lines
563 B
TypeScript
/**
|
|
* Generated by orval v8.3.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { DashboardRangeSeriesBucket } from "./dashboardRangeSeriesBucket";
|
|
import type { DashboardRangeSeriesRange } from "./dashboardRangeSeriesRange";
|
|
import type { DashboardSeriesPoint } from "./dashboardSeriesPoint";
|
|
|
|
/**
|
|
* Series payload for a single range/bucket combination.
|
|
*/
|
|
export interface DashboardRangeSeries {
|
|
bucket: DashboardRangeSeriesBucket;
|
|
points: DashboardSeriesPoint[];
|
|
range: DashboardRangeSeriesRange;
|
|
}
|