UNPKG

@modern-js-reduck/react

Version:

The meta-framework suite designed from scratch for frontend-focused modern web development.

7 lines 272 B
import { Store, Model } from '@modern-js-reduck/store'; declare const createBatchManager: (store: Store) => { addModels: (...args: Model[]) => void; removeModels: (...args: Model[]) => void; pushUpdate: (update: () => void) => void; }; export { createBatchManager };