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.
Support for HTTP2 as a transport layer. E.g.
createServer(app, 3000, () => console.log('server started'))wheretypeof appis(req: Request, next: () => Promise<Response>) => Promise<Response>. Will need to extendRequestwith some HTTP 2.0 goodness like.push, where it should accept standardResponseobjects over general interfaces.