vani-meeting-client
Version:
Vani Meeting Clinet SDK
15 lines (14 loc) • 405 B
JavaScript
export var StreamType;
(function (StreamType) {
StreamType["Consumer"] = "Consumer";
StreamType["Producer"] = "Producer";
})(StreamType || (StreamType = {}));
var TrackStats = /** @class */ (function () {
function TrackStats(_track, _type, _stats) {
this.track = _track;
this.type = _type;
this.stats = _stats;
}
return TrackStats;
}());
export { TrackStats };