amis-rpc-design/node_modules/@reduxjs/toolkit/dist/entities/entity_state.d.ts

9 lines
308 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
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;
};
};