UNPKG

@bentoo/state-man

Version:

A lightweight package for state management in React applications, designed as a simplified alternative to Zustand and the Context API.

8 lines (7 loc) 181 B
import { IStore } from 'interfaces'; type SyncProps<T> = { key: string; store: IStore<T>; }; export declare function syncStoreData<T>(props: SyncProps<T>): void; export {};