mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-12-26 00:22:39 +00:00
13 lines
243 B
TypeScript
13 lines
243 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
|
|
});
|
|
}
|
|
}
|