yumechi-no-kuni/src/web/app/common/scripts/streaming/channel-stream.ts
2017-11-17 01:24:44 +09:00

12 lines
198 B
TypeScript

import Stream from './stream';
/**
* Channel stream connection
*/
export default class Connection extends Stream {
constructor(channelId) {
super('channel', {
channel: channelId
});
}
}