1
0
forked from mirror/misskey
mi.moris.day/src/web/app/common/scripts/streaming/channel-stream.ts

13 lines
198 B
TypeScript
Raw Normal View History

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