Files
wdi-dashboard/node_modules/@reduxjs/toolkit/dist/entities/entity_state.d.ts
2024-08-16 15:06:52 +05:30

4 lines
331 B
TypeScript

import type { EntityId, EntityState, EntityStateAdapter, EntityStateFactory } from './models';
export declare function getInitialEntityState<T, Id extends EntityId>(): EntityState<T, Id>;
export declare function createInitialStateFactory<T, Id extends EntityId>(stateAdapter: EntityStateAdapter<T, Id>): EntityStateFactory<T, Id>;