mirror of
https://github.com/zoriya/v10.git
synced 2026-08-08 23:27:58 +00:00
16 lines
736 B
TypeScript
16 lines
736 B
TypeScript
import { UIComponentProps } from "../../utils/types.js";
|
|
import { ReactNode } from "react";
|
|
import { ControlsCore } from "@videojs/core";
|
|
//#region src/ui/controls/controls-root.d.ts
|
|
interface ControlsRootProps extends UIComponentProps<'div', ControlsCore.State> {
|
|
children?: ReactNode | undefined;
|
|
}
|
|
/** Root container for player controls state and rendered control content. */
|
|
declare const ControlsRoot: import("react").ForwardRefExoticComponent<Omit<ControlsRootProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
declare namespace ControlsRoot {
|
|
type Props = ControlsRootProps;
|
|
type State = ControlsCore.State;
|
|
}
|
|
//#endregion
|
|
export { ControlsRoot, ControlsRootProps };
|
|
//# sourceMappingURL=controls-root.d.ts.map
|