yumechi-no-kuni/src/web/app/common/scripts/streaming/channel-stream.ts

13 lines
198 B
TypeScript
Raw Normal View History

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