UNPKG

@tdb/util

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