forked from FoundKeyGang/FoundKey
Fix access level
This commit is contained in:
parent
c2af1f1bff
commit
bb0f9d5de9
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue