Skip to Content

$ Property Readonly

Allows subscribers to reactively observe value changes

API

readonly $: Observable<T>;

Example

import {map} from 'rxjs'; import {memoryStoragePart} from '@bitfiber/rx'; const msPart = memoryStoragePart('key'); msPart.$ .pipe(map(v => v * 2)) .subscribe(v => console.log(v));
Last updated on