UNPKG

464 BTypeScriptView Raw
1/**
2 * These APIs are still unstable.
3 * See: https://github.com/pmndrs/jotai/discussions/1514
4 */
5export { atom } from './vanilla/atom';
6export { Atom, WritableAtom, PrimitiveAtom } from './vanilla/atom';
7export { createStore, getDefaultStore } from './vanilla/store';
8export { Getter, Setter, ExtractAtomValue, ExtractAtomArgs, ExtractAtomResult, SetStateAction, } from './vanilla/typeUtils';
9declare type Awaited<T> = T extends Promise<infer V> ? V : T;
\No newline at end of file