Skip to content

Commit

Permalink
Small return type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-NRCan committed Oct 6, 2023
1 parent ef0ca45 commit 3a5bc8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/chart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ export interface TypeChartChartProps<TType extends GeoChartType> {
data?: GeoChartData<TType>;
options?: GeoChartOptions;
redraw?: boolean;
handleSliderXChanged?: (value: number | number[]) => {};
handleSliderYChanged?: (value: number | number[]) => {};
handleSliderXChanged?: (value: number | number[]) => void;
handleSliderYChanged?: (value: number | number[]) => void;
}

/**
Expand Down

0 comments on commit 3a5bc8d

Please sign in to comment.