puyoskey/src/web/app/common/scripts/channel-stream.ts
2017-11-14 00:55:11 +09:00

14 lines
211 B
TypeScript

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