fybdp-d3-kg
Version:
Knowledge Graph using React and D3.js
11 lines (10 loc) • 428 B
TypeScript
import { Component } from 'react';
import { AreaChartProps } from '../AreaChart';
import { ChartShallowDataShape } from '../common/data';
export interface AreaSparklineChartProps extends AreaChartProps {
data: ChartShallowDataShape[];
}
export declare class AreaSparklineChart extends Component<AreaSparklineChartProps, {}> {
static defaultProps: Partial<AreaSparklineChartProps>;
render(): JSX.Element;
}