UNPKG

@gpa-gemstone/react-graph

Version:
13 lines (12 loc) 376 B
import { AxisIdentifier } from './GraphContext'; import { IProps as ILineProps } from './Line'; export interface IProps extends ILineProps { threshHolds: IThreshold[]; } export interface IThreshold { Value: number; Color: string; axis?: AxisIdentifier; } declare function LineWithThreshold(props: IProps): JSX.Element | null; export default LineWithThreshold;