19 lines
579 B
TypeScript
19 lines
579 B
TypeScript
/**
|
|
* Generated by orval v8.2.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { DashboardWipPoint } from "./dashboardWipPoint";
|
|
import type { DashboardWipRangeSeriesBucket } from "./dashboardWipRangeSeriesBucket";
|
|
import type { DashboardWipRangeSeriesRange } from "./dashboardWipRangeSeriesRange";
|
|
|
|
/**
|
|
* WIP series payload for a single range/bucket combination.
|
|
*/
|
|
export interface DashboardWipRangeSeries {
|
|
range: DashboardWipRangeSeriesRange;
|
|
bucket: DashboardWipRangeSeriesBucket;
|
|
points: DashboardWipPoint[];
|
|
}
|