$ Property
An observable that allows subscribers to reactively observe changes or updates to the data
API
$: Observable<T>;
Example
class ExampleSource<T = any> implements DataSource<T> {
private readonly subject = new Subject<T>();
readonly $ = this.subject.asObservable();
// ...
}