Skip to content

Commit bc90a58

Browse files
committed
add start and end to LiveSeekableRange
1 parent 3bf639f commit bc90a58

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

types/chromecast-caf-receiver/cast.framework.messages.d.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2082,6 +2082,17 @@ export class LoadByEntityRequestData extends RequestData {
20822082
export class LiveSeekableRange {
20832083
constructor(start?: number, end?: number, isMovingWindow?: boolean, isLiveDone?: boolean);
20842084

2085+
/**
2086+
* The start time (in seconds) of the range relative to the beginning of the stream in seconds.
2087+
*/
2088+
start?: number | undefined;
2089+
2090+
/**
2091+
* The maximum possible time (in seconds) the player can seek to
2092+
* Based on available segments, relative to the beginning of the stream.
2093+
*/
2094+
end?: number | undefined;
2095+
20852096
/**
20862097
* A boolean value indicates whether a live stream is ended. If it is done;
20872098
* the end of live seekable range should stop updating.

0 commit comments

Comments
 (0)