2
0
mirror of synced 2025-01-10 22:26:02 +00:00

18 lines
252 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;
}
}