Skip to content

Commit

Permalink
feat(core): include ngrx entity selectors in operation entity selecto…
Browse files Browse the repository at this point in the history
…rs (#2782)
  • Loading branch information
griest024 committed May 13, 2024
1 parent bb715eb commit 3fe7c8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libs/core/state/src/operation/entity/selectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { DaffOperationEntity } from './type';
export interface DaffOperationEntityStateSelectors<
TRootState,
T extends DaffIdentifiable = DaffIdentifiable
> {
> extends EntitySelectors<DaffOperationEntity<T>, TRootState> {
/**
* Selects an entity by ID.
*/
Expand Down Expand Up @@ -56,6 +56,7 @@ export function daffOperationEntityStateSelectorFactory<
);

return {
...entitySelectors,
selectEntity,
selectOptimisticList,
};
Expand Down

0 comments on commit 3fe7c8c

Please sign in to comment.