summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts/streaming/channel.ts
blob: be68ec09977e3fe4ecd6f54e5dc805277996601a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
		});
	}
}