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());
