UNPKG

@tdb/util

Version:
7 lines (5 loc) 240 B
import { Subject } from 'rxjs'; import { ILocalStorageChangedEvent } from './types'; import { share } from 'rxjs/operators'; export const subject$ = new Subject<ILocalStorageChangedEvent>(); export const changes$ = subject$.pipe(share());