UNPKG

553 BTypeScriptView Raw
1export { atom } from './vanilla/atom';
2export type { Atom, WritableAtom, PrimitiveAtom } from './vanilla/atom';
3import * as store from './vanilla/store';
4type CreateStore = typeof store.createStore;
5type GetDefaultStore = typeof store.getDefaultStore;
6export declare const createStore: CreateStore;
7export declare const getDefaultStore: GetDefaultStore;
8export type { 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