ReactNativeAsyncStorage interface  |  Firebase JavaScript API reference (original) (raw)

ReactNativeAsyncStorage interface

Interface for a supplied AsyncStorage.

Signature:

export interface ReactNativeAsyncStorage 

Methods

Method Description
getItem(key) Retrieve an item from storage.
removeItem(key) Remove an item from storage.
setItem(key, value) Persist an item in storage.

Retrieve an item from storage.

Signature:

getItem(key: string): Promise<string | null>;

Parameters

Parameter Type Description
key string storage key.

Returns:

Promise<string | null>

ReactNativeAsyncStorage.removeItem()

Remove an item from storage.

Signature:

removeItem(key: string): Promise<void>;

Parameters

Parameter Type Description
key string storage key.

Returns:

Promise

ReactNativeAsyncStorage.setItem()

Persist an item in storage.

Signature:

setItem(key: string, value: string): Promise<void>;

Parameters

Parameter Type Description
key string storage key.
value string storage value.

Returns:

Promise

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2024-01-19 UTC.