UNPKG

@aveonline/ui-react

Version:

Home base for Aveonline design system - ecosystem react

24 lines (23 loc) 572 B
import { Margin } from 'recharts/types/util/types'; import { YAxisProps } from 'recharts'; import { PositionY } from './atoms/ITickY'; export interface Data { day: string | number; group: number | string; toolTipText: string; toolTipTitle: string; } interface IScatterChart { margin: Margin; width: number; height: number; } export interface ITimeLine { isLoading?: boolean; data: Data[]; positionY?: PositionY[]; classContainer?: string; paddingTickY?: YAxisProps['padding']; scatterChart?: IScatterChart; } export {};