onboardsync-react-native
Version:
Expo SDK for OnboardSync - Remote onboarding configuration platform with A/B testing
14 lines (12 loc) • 432 B
TypeScript
/// <reference types="react" />
/// <reference types="react-native" />
declare module '@react-native-async-storage/async-storage' {
export interface AsyncStorageStatic {
getItem(key: string): Promise<string | null>;
setItem(key: string, value: string): Promise<void>;
removeItem(key: string): Promise<void>;
clear(): Promise<void>;
}
const AsyncStorage: AsyncStorageStatic;
export default AsyncStorage;
}