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