Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions types/chromecast-caf-receiver/cast.framework.messages.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2082,6 +2082,17 @@ export class LoadByEntityRequestData extends RequestData {
export class LiveSeekableRange {
constructor(start?: number, end?: number, isMovingWindow?: boolean, isLiveDone?: boolean);

/**
* The start time (in seconds) of the range relative to the beginning of the stream in seconds.
*/
start?: number | undefined;

/**
* The maximum possible time (in seconds) the player can seek to
* Based on available segments, relative to the beginning of the stream.
*/
end?: number | undefined;

/**
* A boolean value indicates whether a live stream is ended. If it is done;
* the end of live seekable range should stop updating.
Expand Down