UNPKG

@amaui/ui-react

Version:
9 lines (8 loc) 236 B
import React from 'react'; import { IChart } from '../Chart/Chart'; export interface ILineChart extends IChart { smooth?: boolean; smoothRatio?: number; } declare const LineChart: React.FC<ILineChart>; export default LineChart;