Skip to content

Commit cc28939

Browse files
committed
docs: mark REQUEST and related symbols as stable
This commit removes the `@developerPreview` annotation from the `REQUEST`, `RESPONSE_INIT` and `REQUEST_CONTEXT` symbols, making them stable.
1 parent 4e88e18 commit cc28939

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/core/src/application/platform_tokens.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ import {InjectionToken} from '../di/injection_token';
2222
* * When performing static site generation (SSG).
2323
* * During route extraction in development (at the time of the request).
2424
*
25-
* @see {@link https://developer.mozilla.org/en-US/docs/Web/API/Request | `Request` on MDN}
25+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/API/Request `Request` on MDN}
2626
*
27-
* @developerPreview
27+
* @publicApi
2828
*/
2929
export const REQUEST = new InjectionToken<Request | null>(
3030
typeof ngDevMode === 'undefined' || ngDevMode ? 'REQUEST' : '',
@@ -48,9 +48,9 @@ export const REQUEST = new InjectionToken<Request | null>(
4848
* * When performing static site generation (SSG).
4949
* * During route extraction in development (at the time of the request).
5050
*
51-
* @see {@link https://developer.mozilla.org/en-US/docs/Web/API/Response/Response | `ResponseInit` on MDN}
51+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/API/Response/Response `ResponseInit` on MDN}
5252
*
53-
* @developerPreview
53+
* @publicApi
5454
*/
5555
export const RESPONSE_INIT = new InjectionToken<ResponseInit | null>(
5656
typeof ngDevMode === 'undefined' || ngDevMode ? 'RESPONSE_INIT' : '',
@@ -68,7 +68,7 @@ export const RESPONSE_INIT = new InjectionToken<ResponseInit | null>(
6868
* @remarks
6969
* This token is only available during server-side rendering and will be `null` in other contexts.
7070
*
71-
* @developerPreview
71+
* @publicApi
7272
*/
7373
export const REQUEST_CONTEXT = new InjectionToken<unknown>(
7474
typeof ngDevMode === 'undefined' || ngDevMode ? 'REQUEST_CONTEXT' : '',

0 commit comments

Comments
 (0)