Update App State
Update the application state interface.
// ... imports ...
import { Customer } from '../models';
import { customerReducer } from './customer.state.ts'
export interface IAppState {
customer: IEntityState<Customer>;
}
export type AppState = IAppState;
export const appReducer: ActionReducerMap<AppState> = {
customer: customerReducer
};Last updated