Open Jackman3005 opened 2 years ago
The types for ReduxPersistExpoSecureStore functions getItem and setItem appear to be flipped and causes type errors when I want to work with the storage solution directly.
ReduxPersistExpoSecureStore
getItem
setItem
See current typings:
export interface ReduxPersistExpoSecureStore { getItem(key: string, value: string): Promise<void>; setItem(key: string): Promise<string | null>; removeItem(key: string): Promise<void>; }
The types for
ReduxPersistExpoSecureStore
functionsgetItem
andsetItem
appear to be flipped and causes type errors when I want to work with the storage solution directly.See current typings: