We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
toObservable
1 parent 45f909e commit 4e88e18Copy full SHA for 4e88e18
packages/core/rxjs-interop/src/to_observable.ts
@@ -20,7 +20,7 @@ import {Observable, ReplaySubject} from 'rxjs';
20
/**
21
* Options for `toObservable`.
22
*
23
- * @developerPreview
+ * @publicApi
24
*/
25
export interface ToObservableOptions {
26
@@ -39,7 +39,7 @@ export interface ToObservableOptions {
39
40
* `toObservable` must be called in an injection context unless an injector is provided via options.
41
42
43
44
export function toObservable<T>(source: Signal<T>, options?: ToObservableOptions): Observable<T> {
45
!options?.injector && assertInInjectionContext(toObservable);
0 commit comments