@angular/ssr 19.0.0-next.10 → 19.0.0-next.12
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/fesm2022/node.mjs.map +1 -1
- package/fesm2022/ssr.mjs +86 -84
- package/fesm2022/ssr.mjs.map +1 -1
- package/fesm2022/tokens.mjs +20 -0
- package/fesm2022/tokens.mjs.map +1 -0
- package/index.d.ts +0 -19
- package/package.json +12 -7
- package/third_party/critters/index.js +4 -4
- package/third_party/critters/index.js.map +2 -2
- package/tokens/index.d.ts +21 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Injection token for the current request.
|
|
5
|
+
* @developerPreview
|
|
6
|
+
*/
|
|
7
|
+
export declare const REQUEST: InjectionToken<Request>;
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Injection token for additional request context.
|
|
11
|
+
* @developerPreview
|
|
12
|
+
*/
|
|
13
|
+
export declare const REQUEST_CONTEXT: InjectionToken<unknown>;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Injection token for the response initialization options.
|
|
17
|
+
* @developerPreview
|
|
18
|
+
*/
|
|
19
|
+
export declare const RESPONSE_INIT: InjectionToken<ResponseInit>;
|
|
20
|
+
|
|
21
|
+
export { }
|