mirror of
https://github.com/zoriya/v10.git
synced 2026-08-12 17:09:55 +00:00
13 lines
649 B
TypeScript
13 lines
649 B
TypeScript
import { UIComponentProps } from "../../utils/types.js";
|
|
import { CastButtonCore } from "@videojs/core";
|
|
//#region src/ui/cast-button/cast-button.d.ts
|
|
interface CastButtonProps extends UIComponentProps<'button', CastButtonCore.State>, CastButtonCore.Props {}
|
|
/** A button that toggles casting to a remote device. */
|
|
declare const CastButton: import("react").ForwardRefExoticComponent<CastButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
declare namespace CastButton {
|
|
type Props = CastButtonProps;
|
|
type State = CastButtonCore.State;
|
|
}
|
|
//#endregion
|
|
export { CastButton, CastButtonProps };
|
|
//# sourceMappingURL=cast-button.d.ts.map
|