UNPKG

nstdlib-nightly

Version:

Node.js standard library converted to runtime-agnostic ES modules.

28 lines (25 loc) 659 B
// Source: https://github.com/nodejs/node/blob/65eff1eb/lib/http2.js import { connect, constants, createServer, createSecureServer, getDefaultSettings, getPackedSettings, getUnpackedSettings, performServerHandshake, sensitiveHeaders, Http2ServerRequest, Http2ServerResponse, } from "nstdlib/lib/internal/http2/core"; export { connect }; export { constants }; export { createServer }; export { createSecureServer }; export { getDefaultSettings }; export { getPackedSettings }; export { getUnpackedSettings }; export { performServerHandshake }; export { sensitiveHeaders }; export { Http2ServerRequest }; export { Http2ServerResponse };