* Registers a callback that is invoked whenever the output * emits a new value of type `T`. * * Angular will automatically clean up the subscription when * the directive/component of the output is destroyed.
(callback: (value: T) => void)
| 38 | * the directive/component of the output is destroyed. |
| 39 | */ |
| 40 | subscribe(callback: (value: T) => void): OutputRefSubscription; |
| 41 | |
| 42 | /** |
| 43 | * Reference to the `DestroyRef` of the directive/component declaring |
no outgoing calls
no test coverage detected