File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 11import { HTMLProps } from 'react'
2+ import { ChartDataSets , ChartOptions } from 'chart.js'
23
34interface Charts extends HTMLProps < any > {
45 innerRef ?: any
5- datasets ?: Array < any >
6+ datasets ?: ChartDataSets [ ]
67 labels ?: string | Array < any >
7- options ?: any
8+ options ?: ChartOptions
89 plugins ?: Array < any >
910}
1011
@@ -27,4 +28,4 @@ export declare const CChartLine: (props: CChartLine) => any
2728export declare const CChartDoughnut : ( props : CChartDoughnut ) => any
2829export declare const CChartRadar : ( props : CChartRadar ) => any
2930export declare const CChartPie : ( props : CChartPie ) => any
30- export declare const CChartPolarArea : ( props : CChartPolarArea ) => any
31+ export declare const CChartPolarArea : ( props : CChartPolarArea ) => any
You can’t perform that action at this time.
0 commit comments