You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for HTTP2 as a transport layer. E.g. createServer(app, 3000, () => console.log('server started')) where typeof app is (req: Request, next: () => Promise<Response>) => Promise<Response>. Will need to extend Request with some HTTP 2.0 goodness like .push, where it should accept standard Response objects over general interfaces.
The text was updated successfully, but these errors were encountered:
Support for HTTP2 as a transport layer. E.g.
createServer(app, 3000, () => console.log('server started'))
wheretypeof app
is(req: Request, next: () => Promise<Response>) => Promise<Response>
. Will need to extendRequest
with some HTTP 2.0 goodness like.push
, where it should accept standardResponse
objects over general interfaces.The text was updated successfully, but these errors were encountered: