UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

14 lines (10 loc) 214 B
import { Subject } from 'rxjs'; export class TerminatorService { onDestroy: Subject<boolean>; constructor() { this.onDestroy = new Subject(); } destroy(): void { this.onDestroy.next(true); } }