@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 +1 -1
- package/typings/types.d.cts +1 -1
- package/typings/types.d.ts +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@whatwg-node/server",
|
3
|
-
"version": "0.10.0-alpha-
|
3
|
+
"version": "0.10.0-alpha-20240717144936-662ea5088eb83ec5b55025307193fac81a8ea190",
|
4
4
|
"description": "Fetch API compliant HTTP Server adapter",
|
5
5
|
"sideEffects": false,
|
6
6
|
"dependencies": {
|
package/typings/types.d.cts
CHANGED
@@ -68,7 +68,7 @@ export type ServerAdapterNodeContext = {
|
|
68
68
|
req: NodeRequest;
|
69
69
|
res: NodeResponse;
|
70
70
|
};
|
71
|
-
export type WaitUntilFn = (promise: Promise<
|
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
|
/**
|
package/typings/types.d.ts
CHANGED
@@ -68,7 +68,7 @@ export type ServerAdapterNodeContext = {
|
|
68
68
|
req: NodeRequest;
|
69
69
|
res: NodeResponse;
|
70
70
|
};
|
71
|
-
export type WaitUntilFn = (promise: Promise<
|
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
|
/**
|