We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e4e5ca commit 641fc8fCopy full SHA for 641fc8f
package.json
@@ -25,6 +25,7 @@
25
},
26
"main": "lib/index.js",
27
"module": "es/index.js",
28
+ "types": "src/index.d.ts",
29
"files": [
30
"css/",
31
"es/",
src/index.d.ts
@@ -0,0 +1,12 @@
1
+import React from 'react'
2
+
3
+interface CCharts {
4
+ innerRef?: any;
5
+ datasets?: Array<any>;
6
+ labels?: string | Array<any>;
7
+ options?: any;
8
+ plugins?: Array<any>;
9
+ type?: string;
10
+}
11
12
+export declare const CCharts: (props: CCharts) => React.SFC<CCharts>;
0 commit comments