React Native Firebase
    Preparing search index...

    Interface for a supplied AsyncStorage.

    interface ReactNativeAsyncStorage {
        getItem: Function;
        removeItem: Function;
        setItem: Function;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    getItem: Function

    Retrieve an item from storage.

    storage key.

    removeItem: Function

    Remove an item from storage.

    storage key.

    setItem: Function

    Persist an item in storage.

    storage key.

    storage value.