Files
v10/dist/dev/core/constants.d.ts
T

11 lines
535 B
TypeScript

import { RemotePlaybackLike, TextTrackListLike, TimeRangeLike } from "./types.js";
//#region src/core/constants.d.ts
/** A frozen, empty `TimeRanges`-like value for hosts with no ranges. */
declare const EMPTY_TIME_RANGES: TimeRangeLike;
/** A frozen, empty `TextTrackList`-like value for hosts with no text tracks. */
declare const EMPTY_TEXT_TRACKS: TextTrackListLike;
declare const EMPTY_REMOTE: RemotePlaybackLike;
//#endregion
export { EMPTY_REMOTE, EMPTY_TEXT_TRACKS, EMPTY_TIME_RANGES };
//# sourceMappingURL=constants.d.ts.map