UNPKG

fybdp-d3-kg

Version:

Knowledge Graph using React and D3.js

11 lines (10 loc) 412 B
import { Component } from 'react'; import { LineChartProps } from '../LineChart'; import { ChartShallowDataShape } from '../common/data'; export interface SparklineChartProps extends LineChartProps { data: ChartShallowDataShape[]; } export declare class SparklineChart extends Component<SparklineChartProps, {}> { static defaultProps: Partial<SparklineChartProps>; render(): JSX.Element; }