mirror of
https://codeberg.org/yeentown/barkey
synced 2024-11-21 17:55:11 +00:00
fix(backend): lint and typecheck
This commit is contained in:
parent
663c06be00
commit
360d71278a
1 changed files with 9 additions and 10 deletions
|
@ -80,7 +80,7 @@ class HttpsRequestServiceAgent extends https.Agent {
|
|||
}
|
||||
|
||||
@bindThis
|
||||
public createConnection(options: Object, callback?: Function): net.Socket {
|
||||
public createConnection(options: net.NetConnectOpts, callback?: (err: unknown, stream: net.Socket) => void): net.Socket {
|
||||
const socket = super.createConnection(options, callback)
|
||||
.on('connect', () => {
|
||||
const address = socket.remoteAddress;
|
||||
|
@ -110,7 +110,6 @@ class HttpsRequestServiceAgent extends https.Agent {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
@Injectable()
|
||||
export class HttpRequestService {
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue