1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-11 00:21:05 -05:00

fix(ext/http) nextRequest return type annotation from ResponseEvent to RequestEvent (#15100)

Fixes #15099
This commit is contained in:
Zach 2022-07-06 20:40:27 -04:00 committed by GitHub
parent 6046342a20
commit 82f7daeed7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -81,7 +81,7 @@
return this.#rid;
}
/** @returns {Promise<ResponseEvent | null>} */
/** @returns {Promise<RequestEvent | null>} */
async nextRequest() {
let nextRequest;
try {