balda 0.0.12 → 0.0.13
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.
- package/lib/index.cjs +39 -39
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +39 -39
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.cts
CHANGED
|
@@ -610,6 +610,7 @@ type CookieMiddlewareOptions = {
|
|
|
610
610
|
* It also contains the methods to send the response.
|
|
611
611
|
*/
|
|
612
612
|
declare class Response$1 {
|
|
613
|
+
static toWebResponse(response: Response$1): globalThis.Response;
|
|
613
614
|
/**
|
|
614
615
|
* The node http response object available only on the node runtime, useful for direct response manipulation
|
|
615
616
|
* @warning undefined on other runtimes since they already use Web API Response object
|
package/lib/index.d.ts
CHANGED
|
@@ -610,6 +610,7 @@ type CookieMiddlewareOptions = {
|
|
|
610
610
|
* It also contains the methods to send the response.
|
|
611
611
|
*/
|
|
612
612
|
declare class Response$1 {
|
|
613
|
+
static toWebResponse(response: Response$1): globalThis.Response;
|
|
613
614
|
/**
|
|
614
615
|
* The node http response object available only on the node runtime, useful for direct response manipulation
|
|
615
616
|
* @warning undefined on other runtimes since they already use Web API Response object
|