2
0
mirror of synced 2025-02-28 22:10:53 +00:00
2018-03-23 14:26:11 +00:00

17 lines
251 B
JavaScript

export default class VideoOptions {
constructor() {
this._props = {
startMuted: true,
};
}
build() {
return this._props;
}
setStartMuted(muted: boolean = true) {
this._props.startMuted = muted;
return this;
}
}