import { Subject } from 'rxjs'; import { ILocalStorageChangedEvent } from './types'; import { share } from 'rxjs/operators'; export const subject$ = new Subject(); export const changes$ = subject$.pipe(share());