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