blob: 434b108b9e941099602db72f6a61d5352b06873c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import Stream from './stream';
/**
* Channel stream connection
*/
export default class Connection extends Stream {
constructor(channelId) {
super('channel', {
channel: channelId
});
}
}
|