You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! Thank you for a wonderfully simple and type-safe library. 😄
I thought about this kind of things.
Currently, it seems that I can not set without passing all the properties to set, but I'd like to update the value for partially.
For example, I would like to write the following code.
interfaceSome{one: stringtwo: string}interfaceAppStore{some: Someother: string}store.set("some")({one: "hoge"})// <- Is this possible? Do you have plans to make it possible if you can not?
The text was updated successfully, but these errors were encountered:
Hi! Thank you for a wonderfully simple and type-safe library. 😄
I thought about this kind of things.
Currently, it seems that I can not set without passing all the properties to
set
, but I'd like to update the value for partially.For example, I would like to write the following code.
The text was updated successfully, but these errors were encountered: