Files
MQTT-Explorer/app/src/components/Chart/Model.ts
T
2019-07-13 15:57:30 +02:00

16 lines
240 B
TypeScript

export interface Point {
x: number
y: number
}
export interface Tooltip {
value: Array<TooltipRows>
point: Point
element: Element | null
}
export interface TooltipRows {
title: React.ReactElement
value: React.ReactElement
}