mirror of
https://github.com/thomasnordquist/MQTT-Explorer.git
synced 2026-09-12 01:23:31 +00:00
16 lines
240 B
TypeScript
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
|
|
}
|