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
The approach below seems to be what the docs suggest, with the addition of some typing, which mostly works. Once compiled this code works fine, but it would be nice to avoid having TS errors everywhere:
interfaceMyStore{created?: Date;}conststore=createStore('store')({created: undefined,}asMyStore);// TS error: Cannot invoke an object which is possibly 'undefined'.ts(2722)store.set.created(newDate());
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
The approach below seems to be what the docs suggest, with the addition of some typing, which mostly works. Once compiled this code works fine, but it would be nice to avoid having TS errors everywhere:
Beta Was this translation helpful? Give feedback.
All reactions