PS
constructor() {
}
async registerUser(name) {
const client: PoolClient = await postgres.connect()
const userId: number = await this.createUser(name, client)
await this.logUser(userId, client)
// еще какие-то вызовы с client
return id
}
… остальные функции
}