data state dose not want to be deep wrapped model
See original GitHub issuejust want user is a data state not a modal
interface User {
name: string;
getDisplayName: () => string
}
interface UserModal {
user: User;
fetchUser: thunk(.....)
}
const user = useStoreState(state => state.userModal.user)
the user is StateMapper<User> ??? just want the user is User not StateMapper<User>
Issue Analytics
- State:
- Created 4 years ago
- Comments:9 (4 by maintainers)
Top Results From Across the Web
Using v-model on Nested Vue Components - Zaengle Corp
A computed setter allows us to nest v-model calls and automatically keeps the data synced between parent and child components. Pretty cool!
Read more >Wrap-up | Machine Learning
This document provides an introduction to machine learning for applied researchers. While conceptual in nature, demonstrations are provided for several ...
Read more >Models, Preprocessors, and Action Distributions — Ray 2.2.0
The following diagram provides a conceptual overview of data flow between different components in RLlib. We start with an Environment , which -...
Read more >How To Share State Across React Components with Context
In this tutorial, you'll share state across multiple components using React context. React context is an interface for sharing information ...
Read more >Train 1 trillion+ parameter models - PyTorch Lightning
During the first training step, the warmup phase will sample the maximum non-model data memory (memory usage expect parameters, gradients, and optimizer states) ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Hi @yongningfu
The latest 3.4.0 alpha release fixes this issue.
Let me know if it works for you. See #459 for more info. 👍
@ctrlplusb yes That’s what I’m confused about,because i write some util function , them accept the type is User not _Merge<StateMapper<_Pick<_Pick<User,
just like