Skip to content

Commit

Permalink
feat(component-store): deprecate tapResponse export (#4259)
Browse files Browse the repository at this point in the history
  • Loading branch information
markostanimirovic authored Feb 27, 2024
1 parent 606bf12 commit a5958a0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion modules/component-store/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
import * as operators from '@ngrx/operators';

export * from './component-store';
export { tapResponse } from '@ngrx/operators';
export {
provideComponentStore,
OnStateInit,
OnStoreInit,
} from './lifecycle_hooks';

/**
* @deprecated Use `tapResponse` from `@ngrx/operators` instead.
*/
export const tapResponse = operators.tapResponse;

0 comments on commit a5958a0

Please sign in to comment.