iceshrimp-legacy/src/web/app/common/scripts/channel-stream.ts
2017-11-13 18:05:35 +09:00

17 lines
226 B
TypeScript

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