export type MediaPlayerTimeline = { /** * The starting timestamp in nanoseconds (aparently it's always 0) */ start: number; /** * The total duration of the media item in nanoseconds */ end: number; /** * Current playback position in nanoseconds */ position: number; /** * The earliest timestamp at which the current media item can currently seek to. (in nanoseconds) */ minSeek: number; /** * The furthest timestamp at which the content can currently seek to. (in nanoseconds) */ maxSeek: number; lastUpdatedTime: number; }; //# sourceMappingURL=MediaPlayerTimeline.d.ts.map