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

15 lines
211 B
TypeScript
Raw Normal View History

2017-10-31 10:10:30 -05:00
import Stream from './stream';
/**
* Channel stream connection
*/
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
}
}
export default Connection;