import StreamManager from './stream-manager'; import Connection from './requests-stream'; export default class RequestsStreamManager extends StreamManager { public getConnection() { if (this.connection == null) { this.connection = new Connection(); } return this.connection; } }