Skip to content

Commit

Permalink
feat(rippling): expose Read and Write types
Browse files Browse the repository at this point in the history
  • Loading branch information
e7h4n committed Dec 9, 2024
1 parent 5de0e92 commit 453510a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/rippling/src/core/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export { $value, $computed, $effect } from './atom';
export { createStore } from './store';

export type { Value, Computed, Effect, Getter, Setter, Updater } from '../../types/core/atom';
export type { Value, Computed, Effect, Getter, Setter, Updater, Read, Write } from '../../types/core/atom';

export type { Subscribe, Store } from '../../types/core/store';
2 changes: 1 addition & 1 deletion packages/rippling/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export { $value, $computed, $effect, createStore } from './core';

export type { Value, Computed, Effect, Getter, Setter, Updater, Subscribe, Store } from './core';
export type { Value, Computed, Effect, Getter, Setter, Updater, Subscribe, Store, Read, Write } from './core';

export { nestedAtomToString, createDebugStore } from './debug';
export type { DebugStore } from './debug';
Expand Down

0 comments on commit 453510a

Please sign in to comment.