ra-core
Version:
Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React
16 lines • 327 B
text/typescript
import { Store } from "./types.cjs";
/**
* Store using memory
*
* @example
*
* import { memoryStore } from 'react-admin';
*
* const App = () => (
* <Admin store={memoryStore()}>
* ...
* </Admin>
* );
*/
export declare const memoryStore: (storage?: any) => Store;
//# sourceMappingURL=memoryStore.d.ts.map