Skip to content

Commit

Permalink
Fixed #20 - invalid indexer type
Browse files Browse the repository at this point in the history
  • Loading branch information
bre1470 committed Mar 7, 2019
1 parent 3719baf commit 667e2df
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions dist/highcharts-react.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ export interface HighchartsReactProps {
*/
constructorType?: keyof typeof Highcharts;

/**
* Properties of the chart container
*/
containerProps?: { [key: string]: any}

/**
* Highcharts namespace
*/
Expand All @@ -45,11 +50,6 @@ export interface HighchartsReactProps {
*/
updateArgs?: ([boolean] | [boolean, boolean] | [boolean, boolean, boolean]);

/**
* Properties of the chart container
*/
containerProps?: { [key: (number | string)]: any}


/**
* Callback for the chart factory
Expand Down
10 changes: 5 additions & 5 deletions dist/highcharts-react.min.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ export interface HighchartsReactProps {
*/
constructorType?: keyof typeof Highcharts;

/**
* Properties of the chart container
*/
containerProps?: { [key: string]: any}

/**
* Highcharts namespace
*/
Expand All @@ -45,11 +50,6 @@ export interface HighchartsReactProps {
*/
updateArgs?: ([boolean] | [boolean, boolean] | [boolean, boolean, boolean]);

/**
* Properties of the chart container
*/
containerProps?: { [key: (number | string)]: any}


/**
* Callback for the chart factory
Expand Down
10 changes: 5 additions & 5 deletions src/HighchartsReact.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ export interface HighchartsReactProps {
*/
constructorType?: keyof typeof Highcharts;

/**
* Properties of the chart container
*/
containerProps?: { [key: string]: any}

/**
* Highcharts namespace
*/
Expand All @@ -47,11 +52,6 @@ export interface HighchartsReactProps {
*/
updateArgs?: ([boolean] | [boolean, boolean] | [boolean, boolean, boolean]);

/**
* Properties of the chart container
*/
containerProps?: { [key: (number | string)]: any}

/* *
*
* Functions
Expand Down

0 comments on commit 667e2df

Please sign in to comment.