Skip to content

Commit

Permalink
fix: fix missing scaleHelper export
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e committed Mar 3, 2024
1 parent 3ed0d72 commit 83c9083
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import CalHeatmap from './CalHeatmap';
import * as constants from './constants';
import * as positionHelpers from './helpers/PositionHelper';
import * as scaleHelpers from './helpers/ScaleHelper';

const helpers = { position: positionHelpers };
const helpers = { position: positionHelpers, scale: scaleHelpers };

export default CalHeatmap;
export { constants, helpers };

0 comments on commit 83c9083

Please sign in to comment.