UNPKG

@robotical/sensors-dashboard

Version:

A dashboard tool for depicting Marty data by Robotical

12 lines (11 loc) 447 B
/// <reference types="react" /> import { GraphDataType } from "../GraphArea"; interface GraphProps { data: GraphDataType; maxDataXValue: number; autoScrollEnabled: boolean; mainRef: React.RefObject<HTMLDivElement>; containerRef?: React.RefObject<HTMLDivElement>; } export default function Graph({ data, maxDataXValue, autoScrollEnabled, mainRef, containerRef }: GraphProps): import("react/jsx-runtime").JSX.Element; export {};