UNPKG

@gpa-gemstone/react-graph

Version:
10 lines (9 loc) 360 B
import * as React from 'react'; import { PointNode } from './PointNode'; import { IProps as ILineProps } from './Line'; interface IProps extends ILineProps { Interval: number; RerenderCallback?: () => boolean; } declare const StreamingLine: React.ForwardRefExoticComponent<IProps & React.RefAttributes<PointNode | null>>; export default StreamingLine;