misskey/src/web/app/common/scripts/channel-stream.js

17 lines
226 B
JavaScript

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