index.d.ts 294 Bytes
Newer Older
陈帅's avatar
陈帅 committed
1
import * as React from "react";
2 3 4 5 6 7 8 9 10 11 12 13 14 15
export interface TimelineChartProps {
  data: Array<{
    x: string;
    y1: string;
    y2: string;
  }>;
  titleMap: { y1: string; y2: string };
  height?: number;
}

export default class TimelineChart extends React.Component<
  TimelineChartProps,
  any
> {}