mirror of
https://github.com/hotomoe/hotomoe
synced 2024-12-13 22:28:14 +09:00
Fix access level
This commit is contained in:
parent
c2af1f1bff
commit
bb0f9d5de9
@ -7,7 +7,7 @@ import Connection from './stream';
|
|||||||
* 複数の場所から同じストリームを利用する際、接続をまとめたりする
|
* 複数の場所から同じストリームを利用する際、接続をまとめたりする
|
||||||
*/
|
*/
|
||||||
export default abstract class StreamManager<T extends Connection> extends EventEmitter {
|
export default abstract class StreamManager<T extends Connection> extends EventEmitter {
|
||||||
protected _connection: T = null;
|
private _connection: T = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* コネクションを必要としているユーザー
|
* コネクションを必要としているユーザー
|
||||||
|
Loading…
Reference in New Issue
Block a user