UNPKG

@deltares/fews-web-oc-charts

Version:
7 lines (6 loc) 217 B
export type DataValue = number | Date | number[]; export type DataPoint = { [key: string]: DataValue | null; }; export type DataPointArray = Array<DataPoint>; export type DataPointXY = Pick<DataPoint, 'x' | 'y'>;