dynamic-display-shared
Version:
A library for dynamic view
11 lines (10 loc) • 532 B
TypeScript
import { Action } from '@ngrx/store';
import { EntityForUpdate } from '../services/update-entity.service';
export declare const entityManagementFeatureKey = "entityManagement";
export interface EntityManagementState {
entityForUpdate: EntityForUpdate | undefined;
backgroundUpdateProcesses: number;
isEditStatusesDialogOpened: boolean;
}
export declare const initialState: EntityManagementState;
export declare function reducer(state: EntityManagementState | undefined, action: Action): EntityManagementState;