zombiebox-platform-lg
Version:
LG NetCast Smart TV support abstraction layer for ZombieBox framework.
43 lines (36 loc) • 426 B
JavaScript
/**
*/
class LGMediaInfo {
/**
*/
constructor() {
/**
* @type {number}
*/
this.duration;
/**
* @type {number}
*/
this.currentPosition;
/**
* @type {number}
*/
this.bufBegin;
/**
* @type {number}
*/
this.bufEnd;
/**
* @type {number}
*/
this.bufRemain;
/**
* @type {number}
*/
this.bitrateInstant;
/**
* @type {number}
*/
this.bitrateTarget;
}
}