barkey/src/web/app/common/scripts/streaming/server-stream.ts
2017-11-17 01:24:44 +09:00

10 lines
158 B
TypeScript

import Stream from './stream';
/**
* Server stream connection
*/
export default class Connection extends Stream {
constructor() {
super('server');
}
}