This commit is contained in:
nik
2025-10-03 22:27:28 +03:00
parent 829fad0e17
commit 871cf7e792
16520 changed files with 2967597 additions and 3 deletions

16
node_modules/jotai/react/Provider.d.ts generated vendored Normal file
View File

@@ -0,0 +1,16 @@
import type { FunctionComponent, ReactElement, ReactNode } from 'react';
import { createStore } from 'jotai/vanilla';
type Store = ReturnType<typeof createStore>;
type Options = {
store?: Store;
};
export declare function useStore(options?: Options): Store;
export declare function Provider({ children, store, }: {
children?: ReactNode;
store?: Store;
}): ReactElement<{
value: Store | undefined;
}, FunctionComponent<{
value: Store | undefined;
}>>;
export {};