Skip to content

Commit 3f1e7ab

Browse files
JeanMechedevversion
authored andcommitted
feat(core): promote outputFromObservable & outputToObservable to stable. (#58214)
Alongside the promotion of `output()` to stable, we promote those 2 related interops. PR Close #58214
1 parent 61ba230 commit 3f1e7ab

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/core/rxjs-interop/src/output_from_observable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class OutputFromObservableRef<T> implements OutputRef<T> {
8080
* }
8181
* ```
8282
*
83-
* @developerPreview
83+
* @publicApi
8484
*/
8585
export function outputFromObservable<T>(
8686
observable: Observable<T>,

packages/core/rxjs-interop/src/output_to_observable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {Observable} from 'rxjs';
1515
*
1616
* You can subscribe to the output via `Observable.subscribe` then.
1717
*
18-
* @developerPreview
18+
* @publicApi
1919
*/
2020
export function outputToObservable<T>(ref: OutputRef<T>): Observable<T> {
2121
const destroyRef = ɵgetOutputDestroyRef(ref);

0 commit comments

Comments
 (0)