mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
12 lines
635 B
TypeScript
12 lines
635 B
TypeScript
import { UIComponentProps } from "../../utils/types.js";
|
|
import { SliderState } from "@videojs/core";
|
|
//#region src/ui/slider/slider-thumb.d.ts
|
|
interface SliderThumbProps extends UIComponentProps<'div', SliderState> {}
|
|
/** Draggable handle for setting the slider value. Receives focus and handles keyboard interaction. */
|
|
declare const SliderThumb: import("react").ForwardRefExoticComponent<Omit<SliderThumbProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
declare namespace SliderThumb {
|
|
type Props = SliderThumbProps;
|
|
}
|
|
//#endregion
|
|
export { SliderThumb, SliderThumbProps };
|
|
//# sourceMappingURL=slider-thumb.d.ts.map
|