XuqmGroup-RNChatDemo/types/async-storage.d.ts

10 行
269 B
TypeScript

declare module '@react-native-async-storage/async-storage' {
const AsyncStorage: {
getItem(key: string): Promise<string | null>
setItem(key: string, value: string): Promise<void>
removeItem(key: string): Promise<void>
}
export default AsyncStorage
}