entity_state.d.ts 308 B

12345678
  1. import type { EntityState } from './models';
  2. export declare function getInitialEntityState<V>(): EntityState<V>;
  3. export declare function createInitialStateFactory<V>(): {
  4. getInitialState: {
  5. (): EntityState<V>;
  6. <S extends object>(additionalState: S): EntityState<V> & S;
  7. };
  8. };