@h3ravel/http 11.6.0 → 11.7.0
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/dist/app.globals.d.ts +5 -1
- package/dist/index.cjs +4784 -3046
- package/dist/index.d.cts +1238 -425
- package/dist/index.d.ts +1237 -424
- package/dist/index.js +4771 -3045
- package/package.json +5 -5
package/dist/app.globals.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Request } from '.'
|
|
1
|
+
import { Request, Response } from '.'
|
|
2
2
|
|
|
3
3
|
export { }
|
|
4
4
|
|
|
@@ -7,4 +7,8 @@ declare global {
|
|
|
7
7
|
* @returns a global instance of the Request class.
|
|
8
8
|
*/
|
|
9
9
|
function request (): Request
|
|
10
|
+
/**
|
|
11
|
+
* @returns a global instance of the Response class.
|
|
12
|
+
*/
|
|
13
|
+
function response (): Response
|
|
10
14
|
}
|