import { Video } from "../../core/types.js"; import { TikTokSource } from "./source.js"; //#region src/dom/tiktok/props.d.ts /** * The `Video` members the TikTok host accepts, plus the source that names the * video. `playsInline` and `poster` are stored and reported but never reach the * embed: it always plays inline and draws the video's own cover image. * * `preload` reaches no TikTok parameter either, but it is not inert: anything * but `'none'` has the host bring TikTok's dormant player up with an `autoplay` * it then parks (see `shouldBootstrapTikTokEmbed`), which `controls` also opts * out of by handing playback to TikTok's own chrome. That buys commands the * embed answers, not metadata — TikTok reports a duration of 0 until it plays. */ interface TikTokMediaProps extends Pick { source: TikTokSource | null; } declare const tiktokMediaDefaultProps: TikTokMediaProps; //#endregion export { TikTokMediaProps, tiktokMediaDefaultProps }; //# sourceMappingURL=props.d.ts.map