WS: improve Component class hierarchy

This commit is contained in:
Luciano Iam 2020-06-14 12:06:54 +02:00 committed by Robin Gareus
parent cc8ed1580c
commit 5929551b3b
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
3 changed files with 17 additions and 17 deletions

View file

@ -16,11 +16,11 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
import { RootComponent } from '../base/component.js';
import { Component } from '../base/component.js';
import { StateNode } from '../base/protocol.js';
import { Strip } from './strip.js';
export class Mixer extends RootComponent {
export class Mixer extends Component {
constructor (channel) {
super(channel);