UNPKG

dreamstate

Version:

Store management library based on react context and observers

15 lines (13 loc) 434 B
/** * A utility class for storing and managing nested action values. * * This class is primarily used by the `ContextManager` to track and avoid comparing actions during context updates. * It helps in detecting differences in state changes efficiently. */ var ActionsStore = /** @class */function () { function ActionsStore(actions) { Object.assign(this, actions); } return ActionsStore; }(); export { ActionsStore };