We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf5bda4 commit df1b44eCopy full SHA for df1b44e
aio/content/guide/rxjs-interop.md
@@ -16,6 +16,7 @@ The `toSignal` function creates a signal which tracks the value of an Observable
16
import {Component} from '@angular/core';
17
import {AsyncPipe} from '@angular/common';
18
import {interval} from 'rxjs';
19
+import { toSignal } from '@angular/core/rxjs-interop';
20
21
@Component({
22
standalone: true,
@@ -68,6 +69,7 @@ The `toObservable` utility creates an `Observable` which tracks the value of a s
68
69
70
```ts
71
import { Component, signal } from '@angular/core';
72
+import { toObservable } from '@angular/core/rxjs-interop';
73
74
@Component(...)
75
export class SearchResults {
0 commit comments