srvx 0.2.3 → 0.2.4

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/dist/types.d.mts +1 -1
  2. package/package.json +1 -1
package/dist/types.d.mts CHANGED
@@ -4,7 +4,7 @@ import * as Bun from 'bun';
4
4
  import * as CF from '@cloudflare/workers-types';
5
5
 
6
6
  type MaybePromise<T> = T | Promise<T>;
7
- declare const Response: globalThis.Response;
7
+ declare const Response: typeof globalThis.Response;
8
8
  /**
9
9
  * Create a new server instance.
10
10
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "srvx",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Universal Server API based on web platform standards. Works seamlessly with Deno, Bun and Node.js.",
5
5
  "repository": "unjs/srvx",
6
6
  "license": "MIT",