UNPKG

426 BTypeScriptView Raw
1import { OnDestroy, Provider } from '@angular/core';
2import { BehaviorSubject } from 'rxjs';
3import { Action } from './models';
4export declare const INIT: "@ngrx/store/init";
5export declare class ActionsSubject extends BehaviorSubject<Action> implements OnDestroy {
6 constructor();
7 next(action: Action): void;
8 complete(): void;
9 ngOnDestroy(): void;
10}
11export declare const ACTIONS_SUBJECT_PROVIDERS: Provider[];