Skip to content

Commit

Permalink
RangeControl: Remove unused UseDebouncedHoverInteractionArgs type (#4…
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronrobertshaw committed Sep 23, 2022
1 parent 0a9402a commit b3c665e
Showing 1 changed file with 0 additions and 33 deletions.
33 changes: 0 additions & 33 deletions packages/components/src/range-control/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,39 +290,6 @@ export type UseControlledRangeValueArgs = {
value: number | null;
};

export type UseDebouncedHoverInteractionArgs = {
/**
* A callback function invoked when the element is hidden.
*
* @default () => {}
*/
onHide?: () => void;
/**
* A callback function invoked when the mouse is moved out of the element.
*
* @default () => {}
*/
onMouseLeave?: MouseEventHandler< HTMLInputElement >;
/**
* A callback function invoked when the mouse is moved.
*
* @default () => {}
*/
onMouseMove?: MouseEventHandler< HTMLInputElement >;
/**
* A callback function invoked when the element is shown.
*
* @default () => {}
*/
onShow?: () => void;
/**
* Timeout before the element is shown or hidden.
*
* @default 300
*/
timeout?: number;
};

export type UseMarksArgs = NumericProps & {
marks: RangeMarks;
step: number;
Expand Down

0 comments on commit b3c665e

Please sign in to comment.