mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
14 lines
562 B
TypeScript
14 lines
562 B
TypeScript
import "../../core/signals/primitives.js";
|
|
import "../../index.js";
|
|
import { TrackPicker, VideoSelectionConfig } from "../../media/primitives/select-tracks.js";
|
|
//#region src/playback/behaviors/select-tracks.d.ts
|
|
/**
|
|
* Config for `selectVideoTrack`. Pass `picker` to fully override selection
|
|
* logic; otherwise the default `pickFirstTrackId` is used.
|
|
*/
|
|
interface SelectVideoTrackConfig extends VideoSelectionConfig {
|
|
picker?: TrackPicker<SelectVideoTrackConfig>;
|
|
}
|
|
//#endregion
|
|
export { SelectVideoTrackConfig };
|
|
//# sourceMappingURL=select-tracks.d.ts.map
|