UNPKG

@reduxjs/toolkit

Version:

The official, opinionated, batteries-included toolset for efficient Redux development

9 lines (8 loc) 308 B
import type { EntityState } from './models'; export declare function getInitialEntityState<V>(): EntityState<V>; export declare function createInitialStateFactory<V>(): { getInitialState: { (): EntityState<V>; <S extends object>(additionalState: S): EntityState<V> & S; }; };