All files / src/app/core/store/customer customer-store.ts

100% Statements 2/2
100% Branches 0/0
100% Functions 0/0
100% Lines 2/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23419x                                         419x  
import { createFeatureSelector } from '@ngrx/store';
 
import { Authorization } from 'ish-core/models/authorization/authorization.model';
 
import { AddressesState } from './addresses/addresses.reducer';
import { BasketState } from './basket/basket.reducer';
import { DataRequestsState } from './data-requests/data-requests.reducer';
import { OrdersState } from './orders/orders.reducer';
import { SsoRegistrationState } from './sso-registration/sso-registration.reducer';
import { UserState } from './user/user.reducer';
 
export interface CustomerState {
  user: UserState;
  addresses: AddressesState;
  orders: OrdersState;
  basket: BasketState;
  authorization: Authorization;
  ssoRegistration: SsoRegistrationState;
  dataRequests: DataRequestsState;
}
 
export const getCustomerState = createFeatureSelector<CustomerState>('_customer');