mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
11 lines
535 B
TypeScript
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
|