avancement planning

This commit is contained in:
2026-05-26 11:58:39 +02:00
parent 619a2b240a
commit 150b97cd2e
4892 changed files with 99214 additions and 429382 deletions
+8 -1
View File
@@ -1,5 +1,5 @@
/**
* @license Angular v20.3.11
* @license Angular v20.3.21
* (c) 2010-2025 Google LLC. https://angular.dev/
* License: MIT
*/
@@ -17,6 +17,8 @@ import { OutputRef, OutputRefSubscription, DestroyRef, Signal, WritableSignal, V
* <my-comp (valueChange)="processNewValue($event)" />
* ```
*
* @see [Custom events with outputs](guide/components/outputs)
*
* @publicAPI
*/
declare class OutputEmitterRef<T> implements OutputRef<T> {
@@ -34,6 +36,8 @@ declare function getOutputDestroyRef(ref: OutputRef<unknown>): DestroyRef | unde
/**
* Options for declaring an output.
*
* @see [Customizing output names](guide/components/outputs#customizing-output-names)
*
* @publicApi 19.0
*/
interface OutputOptions {
@@ -78,6 +82,9 @@ interface OutputOptions {
* this.nameChange.emit(newName);
* }
* ```
*
* @see [Custom events with outputs](guide/components/outputs#customizing-output-names)
*
* @initializerApiFunction {"showTypesInSignaturePreview": true}
* @publicApi 19.0
*/