UNPKG

596 BTypeScriptView Raw
1import { OnDestroy, Provider } from '@angular/core';
2import { BehaviorSubject } from 'rxjs';
3import { Action } from './models';
4import * as i0 from "@angular/core";
5export declare const INIT: "@ngrx/store/init";
6export declare class ActionsSubject extends BehaviorSubject<Action> implements OnDestroy {
7 constructor();
8 next(action: Action): void;
9 complete(): void;
10 ngOnDestroy(): void;
11 static ɵfac: i0.ɵɵFactoryDeclaration<ActionsSubject, never>;
12 static ɵprov: i0.ɵɵInjectableDeclaration<ActionsSubject>;
13}
14export declare const ACTIONS_SUBJECT_PROVIDERS: Provider[];