jormungandr-bite/src/web/app/common/scripts/streaming/channel.ts

13 lines
198 B
TypeScript
Raw Normal View History

2017-10-31 09:10:30 -06:00
import Stream from './stream';
/**
* Channel stream connection
*/
2017-11-16 09:24:44 -07:00
export default class Connection extends Stream {
2017-10-31 12:17:14 -06:00
constructor(channelId) {
super('channel', {
channel: channelId
});
2017-10-31 09:10:30 -06:00
}
}