Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DO_NOT_MERGE] sync effect (V2) development and testing #2943

Draft
wants to merge 13 commits into
base: main
Choose a base branch
from
13 changes: 12 additions & 1 deletion src/vanilla.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
export { atom } from './vanilla/atom.ts'
export type { Atom, WritableAtom, PrimitiveAtom } from './vanilla/atom.ts'

export { createStore, getDefaultStore } from './vanilla/store.ts'
export {
createStore,
getDefaultStore,
INTERNAL_buildStore,
} from './vanilla/store.ts'

export type {
INTERNAL_AtomState,
INTERNAL_DevStoreRev4,
INTERNAL_PrdStore,
INTERNAL_SecretStoreMethods,
} from './vanilla/store.ts'

export type {
Getter,
Expand Down
Loading
Loading