mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
12 lines
530 B
TypeScript
12 lines
530 B
TypeScript
import { UIComponentProps } from "../../utils/types.js";
|
|
import { SliderState } from "@videojs/core";
|
|
//#region src/ui/slider/slider-fill.d.ts
|
|
interface SliderFillProps extends UIComponentProps<'div', SliderState> {}
|
|
/** Displays the filled portion from start to the current value. */
|
|
declare const SliderFill: import("react").ForwardRefExoticComponent<SliderFillProps>;
|
|
declare namespace SliderFill {
|
|
type Props = SliderFillProps;
|
|
}
|
|
//#endregion
|
|
export { SliderFill, SliderFillProps };
|
|
//# sourceMappingURL=slider-fill.d.ts.map
|