App Interfaces
Create application state interface.
import { IEntityState } from '@briebug/ngrx-auto-entity';
export interface IAppState {
// todo: add each entity state interface to our application state interface
}
export type AppState = IAppState;Last updated