12 lines
198 B
TypeScript
12 lines
198 B
TypeScript
import Stream from './stream';
|
|
|
|
/**
|
|
* Channel stream connection
|
|
*/
|
|
export default class Connection extends Stream {
|
|
constructor(channelId) {
|
|
super('channel', {
|
|
channel: channelId
|
|
});
|
|
}
|
|
}
|