Files
infocom-systems-design/node_modules/jotai/vanilla/store.d.ts
2025-10-03 22:27:28 +03:00

6 lines
321 B
TypeScript

import type { INTERNAL_Store } from 'jotai/vanilla/internals';
export type Store = INTERNAL_Store;
export declare function INTERNAL_overrideCreateStore(fn: (prev: typeof createStore | undefined) => typeof createStore): void;
export declare function createStore(): Store;
export declare function getDefaultStore(): Store;