Skip to content

Commit

Permalink
fix(bump): support null axis* props
Browse files Browse the repository at this point in the history
  • Loading branch information
wyze committed Jul 14, 2021
1 parent 156b88a commit 1c42e11
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/bump/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ declare module '@nivo/bump' {

enableGridX?: boolean
enableGridY?: boolean
axisTop?: AxisProps
axisRight?: AxisProps
axisBottom?: AxisProps
axisLeft?: AxisProps
axisTop?: AxisProps | null
axisRight?: AxisProps | null
axisBottom?: AxisProps | null
axisLeft?: AxisProps | null

isInteractive?: boolean
onMouseEnter?: BumpMouseHandler
Expand Down

0 comments on commit 1c42e11

Please sign in to comment.