graycoreio/daffodil

View on GitHub
libs/paypal/state/src/reducers/paypal-reducers.interface.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { DaffPaypalExpressReducerState } from './express/public_api';
import { DaffPaypalReducerState } from './paypal/paypal-reducer.interface';
import { DAFF_PAYPAL_STORE_FEATURE_KEY } from './paypal-store-feature-key';

export interface DaffPaypalReducersState {
  paypal: DaffPaypalReducerState;
  express: DaffPaypalExpressReducerState;
}

export interface DaffPaypalStateRootSlice {
  [DAFF_PAYPAL_STORE_FEATURE_KEY]: DaffPaypalReducersState;
}