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 | 14x 14x | import { createFeatureSelector } from '@ngrx/store';
import { CxmlConfigurationState } from './cxml-configuration/cxml-configuration.reducer';
import { OciConfigurationState } from './oci-configuration/oci-configuration.reducer';
import { PunchoutTypesState } from './punchout-types/punchout-types.reducer';
import { PunchoutUsersState } from './punchout-users/punchout-users.reducer';
export interface PunchoutState {
ociConfiguration: OciConfigurationState;
punchoutUsers: PunchoutUsersState;
punchoutTypes: PunchoutTypesState;
cxmlConfiguration: CxmlConfigurationState;
}
export const getPunchoutState = createFeatureSelector<PunchoutState>('punchout');
|