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