FoundKey/src/client/app/common/scripts/streaming/channel.ts
2018-04-29 21:37:51 +09:00

14 lines
246 B
TypeScript

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