UNPKG

@modern-js/types

Version:

A Progressive React Framework for modern web development.

6 lines (4 loc) 261 B
import type { IncomingMessage, ServerResponse } from 'http'; import type { Http2ServerRequest, Http2ServerResponse } from 'http2'; export type NodeRequest = IncomingMessage | Http2ServerRequest; export type NodeResponse = ServerResponse | Http2ServerResponse;