Files
Jungfraujoch/frontend/src/openapi/models/plot.ts
T
2025-05-28 18:49:27 +02:00

16 lines
382 B
TypeScript

/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
/**
* x and y coordinates for plotting, it is OK to assume that both arrays have the same size; layout is optimized for Plotly
*/
export type plot = {
title: string;
'x': Array<number>;
'y': Array<number>;
'z'?: Array<number>;
};