mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
11 lines
623 B
TypeScript
11 lines
623 B
TypeScript
import { UIComponentProps } from "../../utils/types.js";
|
|
import { SeekIndicatorCore } from "@videojs/core";
|
|
//#region src/ui/seek-indicator/seek-indicator-value.d.ts
|
|
interface SeekIndicatorValueProps extends UIComponentProps<'div', SeekIndicatorCore.State> {}
|
|
declare const SeekIndicatorValue: import("react").ForwardRefExoticComponent<Omit<SeekIndicatorValueProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
declare namespace SeekIndicatorValue {
|
|
type Props = SeekIndicatorValueProps;
|
|
}
|
|
//#endregion
|
|
export { SeekIndicatorValue, SeekIndicatorValueProps };
|
|
//# sourceMappingURL=seek-indicator-value.d.ts.map
|