/** * Copyright (c) Double Symmetry GmbH * Commercial use requires a license. See https://rntp.dev/pricing */ export interface Progress { /** Current playback position in seconds. */ position: number; /** Total duration of the media item in seconds. */ duration: number; /** Buffered position in seconds. */ buffered: number; /** Cached-on-disk position in seconds. 0 when caching is not enabled. */ cached: number; } //# sourceMappingURL=Progress.d.ts.map