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

15 lines
211 B
TypeScript
Raw Normal View History

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