Skip to content

Commit 3cff5a8

Browse files
committed
Added definition file to support TypeScript import
1 parent 70a21de commit 3cff5a8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/FusionCharts.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import * as React from 'react';
2+
3+
interface State {
4+
dataJson: any;
5+
schemaJson: any;
6+
}
7+
8+
declare class FusionCharts extends React.Component<any, State> {}
9+
10+
export default FusionCharts;

0 commit comments

Comments
 (0)