8 lines
297 B
TypeScript
8 lines
297 B
TypeScript
|
import { ChartConfiguration } from 'chart.js';
|
||
|
import { FunctionComponent } from 'react';
|
||
|
interface ReactChartJSProps {
|
||
|
chartConfig?: ChartConfiguration;
|
||
|
}
|
||
|
declare const ReactChartJs: FunctionComponent<ReactChartJSProps>;
|
||
|
export default ReactChartJs;
|
||
|
//# sourceMappingURL=ReactChartJs.d.ts.map
|