Remove tsc-multi, re-install gts, apply autoformatting and linting

This commit is contained in:
Jon Staab
2024-12-17 10:59:27 -08:00
parent 0b86613161
commit f33e03740e
122 changed files with 2243 additions and 2178 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
import {Emitter} from '@welshman/lib'
import {Connection} from "./Connection"
import {Emitter} from "@welshman/lib"
import {Connection} from "./Connection.js"
export class Pool extends Emitter {
data: Map<string, Connection>
@@ -24,7 +24,7 @@ export class Pool extends Emitter {
const newConnection = new Connection(url)
this.data.set(url, newConnection)
this.emit('init', newConnection)
this.emit("init", newConnection)
return newConnection
}