summary refs log tree commit diff
path: root/src/util/connections/ConnectionStore.ts
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-08-07 16:47:01 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-08-07 16:47:01 +1000
commita25a62aa76694fd4dd45e2a9405449eb4374deb6 (patch)
tree39ee569e01c03a49df013eb2cc665bcf60423db2 /src/util/connections/ConnectionStore.ts
parentadd login script (diff)
parentFix linter warnings in connections (diff)
downloadserver-a25a62aa76694fd4dd45e2a9405449eb4374deb6.tar.xz
Merge branch 'master' of github.com:spacebarchat/server
Diffstat (limited to 'src/util/connections/ConnectionStore.ts')
-rw-r--r--src/util/connections/ConnectionStore.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/connections/ConnectionStore.ts b/src/util/connections/ConnectionStore.ts

index 39abfea6..95e54fd9 100644 --- a/src/util/connections/ConnectionStore.ts +++ b/src/util/connections/ConnectionStore.ts
@@ -16,8 +16,8 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import Connection from "./Connection"; -import RefreshableConnection from "./RefreshableConnection"; +import { Connection } from "./Connection"; +import { RefreshableConnection } from "./RefreshableConnection"; export class ConnectionStore { public static connections: Map<string, Connection | RefreshableConnection> =