@whatwg-node/server 0.4.6 → 0.4.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/utils.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whatwg-node/server",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
4
4
  "description": "Fetch API compliant HTTP Server adapter",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
package/utils.d.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  import type { IncomingMessage, ServerResponse } from 'node:http';
5
5
  import type { Socket } from 'node:net';
6
6
  import type { Readable } from 'node:stream';
7
- export interface NodeRequest extends Readable {
7
+ export interface NodeRequest {
8
8
  protocol?: string;
9
9
  hostname?: string;
10
10
  body?: any;