Skip to content

Commit

Permalink
feat(nx): export data persistence operators
Browse files Browse the repository at this point in the history
DataPersistence methods have been refactored to use pipeable operators, but these operators weren't
exported so they could not be used outside of the library. Now, users will be able to import the
operators themselves.
  • Loading branch information
texel authored and vsavkin committed Oct 4, 2018
1 parent f1d4dd9 commit b9ffb90
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/nx/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
export { DataPersistence } from './src/data-persistence';
export {
DataPersistence,
fetch,
navigation,
optimisticUpdate,
pessimisticUpdate
} from './src/data-persistence';
export { NxModule } from './src/nx.module';

0 comments on commit b9ffb90

Please sign in to comment.