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