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
Hello all, I hope you'll entertain an enhancement request. I'm enjoying the library so far but I'm wondering if we can get better type accuracy. One specific example would be:
get(key: string): Promise<any>;
Promise<any> could be clarified with X | Y | null, allowing for null checking, as that may often return null.
Thanks!
The text was updated successfully, but these errors were encountered:
Hello all, I hope you'll entertain an enhancement request. I'm enjoying the library so far but I'm wondering if we can get better type accuracy. One specific example would be:
Promise<any>
could be clarified withX | Y | null
, allowing for null checking, as that may often return null.Thanks!
The text was updated successfully, but these errors were encountered: