@robotical/sensors-dashboard
Version:
A dashboard tool for depicting Marty data by Robotical
11 lines (10 loc) • 381 B
TypeScript
/// <reference types="react" />
import { GraphDataType } from "../GraphArea";
interface GraphProps {
data: GraphDataType;
maxDataXValue: number;
autoScrollEnabled: boolean;
mainRef: React.RefObject<HTMLDivElement>;
}
export default function Graph({ data, maxDataXValue, autoScrollEnabled, mainRef }: GraphProps): import("react/jsx-runtime").JSX.Element;
export {};