index.d.ts 294 B

123456789101112131415
  1. import * as React from "react";
  2. export interface TimelineChartProps {
  3. data: Array<{
  4. x: string;
  5. y1: string;
  6. y2: string;
  7. }>;
  8. titleMap: { y1: string; y2: string };
  9. height?: number;
  10. }
  11. export default class TimelineChart extends React.Component<
  12. TimelineChartProps,
  13. any
  14. > {}