@whatwg-node/server 0.10.0-alpha-20240717144117-bd4f5ec01a4aad17e92fdec7e69a1ffe5d619225 → 0.10.0-alpha-20240717144936-662ea5088eb83ec5b55025307193fac81a8ea190

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whatwg-node/server",
3
- "version": "0.10.0-alpha-20240717144117-bd4f5ec01a4aad17e92fdec7e69a1ffe5d619225",
3
+ "version": "0.10.0-alpha-20240717144936-662ea5088eb83ec5b55025307193fac81a8ea190",
4
4
  "description": "Fetch API compliant HTTP Server adapter",
5
5
  "sideEffects": false,
6
6
  "dependencies": {
@@ -68,7 +68,7 @@ export type ServerAdapterNodeContext = {
68
68
  req: NodeRequest;
69
69
  res: NodeResponse;
70
70
  };
71
- export type WaitUntilFn = (promise: Promise<void> | void) => void;
71
+ export type WaitUntilFn = (promise: Promise<unknown>) => void;
72
72
  export type FetchAPI = ReturnType<typeof import('@whatwg-node/fetch').createFetch>;
73
73
  export type ServerAdapterInitialContext = {
74
74
  /**
@@ -68,7 +68,7 @@ export type ServerAdapterNodeContext = {
68
68
  req: NodeRequest;
69
69
  res: NodeResponse;
70
70
  };
71
- export type WaitUntilFn = (promise: Promise<void> | void) => void;
71
+ export type WaitUntilFn = (promise: Promise<unknown>) => void;
72
72
  export type FetchAPI = ReturnType<typeof import('@whatwg-node/fetch').createFetch>;
73
73
  export type ServerAdapterInitialContext = {
74
74
  /**