mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-16 02:21:01 -07:00
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
|
|
});
|
|
}
|
|
}
|