@gpa-gemstone/react-graph
Version:
Interactive UI Components for GPA products
10 lines (9 loc) • 360 B
TypeScript
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;