import { Video } from "../../core/types.js"; import { TwitchSource } from "./source.js"; //#region src/dom/twitch/props.d.ts /** * The `Video` members the Twitch host accepts, plus the source that names the * video or channel. Three of them never reach the embed: `loop`, which it has no * parameter for and the host emulates by seeking a finished VOD back to the * start (a live channel never ends, so it never repeats); `playsInline`, which * Twitch decides for itself on a phone; and `poster`, which the embed draws * itself and offers no way to replace. */ interface TwitchMediaProps extends Pick { source: TwitchSource | null; } declare const twitchMediaDefaultProps: TwitchMediaProps; //#endregion export { TwitchMediaProps, twitchMediaDefaultProps }; //# sourceMappingURL=props.d.ts.map