Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
dmaskasky committed Jan 21, 2025
1 parent 5f8de37 commit abe8c44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vanilla/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ type SecretStoreMethods = readonly [
) => void,
makeGetter: <Value>(atom: Atom<Value>, isSync?: boolean) => Getter,
makeSetter: <Value>(atom: Atom<Value>, isSync?: boolean) => Setter,
invalidateDependents: <Value>(atom: Atom<Value>) => void,
invalidateDependents: (atomState: AtomState) => void,
recomputeInvalidatedAtoms: () => void,
flushCallbacks: () => void,
]
Expand Down

0 comments on commit abe8c44

Please sign in to comment.