mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
9 lines
241 B
JavaScript
9 lines
241 B
JavaScript
"use strict";
|
|
|
|
export default class EditTracksInfoRequest {
|
|
constructor (opt_activeTrackIds = null, opt_textTrackStyle = null) {
|
|
this.activeTrackIds = opt_activeTrackIds;
|
|
this.textTrackStyle = opt_textTrackStyle;
|
|
}
|
|
}
|