ReScript bindings for
@react-native-async-storage/async-storage
.
Exposed as ReactNativeAsyncStorage
module.
@rescript-react-native/async-storage
X.y.* means it's compatible with
@react-native-async-storage/async-storage
X.y.*
When
@react-native-async-storage/async-storage
is properly installed & configured by following their installation instructions,
you can install the bindings:
npm install @rescript-react-native/async-storage
# or
yarn add @rescript-react-native/async-storage
@rescript-react-native/async-storage
should be added to bs-dependencies
in
your bsconfig.json
:
{
//...
"bs-dependencies": [
"@rescript/react",
"rescript-react-native",
// ...
+ "@rescript-react-native/async-storage"
],
//...
}
type asyncStorageState = {
getItem: unit => Js.Promise.t(Js.Null.t(string)),
setItem: string => Js.Promise.t(unit),
mergeItem: string => Js.Promise.t(unit),
removeItem: unit => Js.Promise.t(unit),
};
let ReactNativeAsyncStorage.{getItem, setItem} =
ReactNativeAsyncStorage.useAsyncStorage("useAsyncStorage");
string => Js.Promise.t(Js.Null.t(string))
(string, string) => Js.Promise.t(unit)
string => Js.Promise.t(unit)
(string, string) => Js.Promise.t(unit)
unit => Js.Promise.t(unit)
unit => Js.Promise.t(Js.Null.t(array(string)))
array(string) => Js.Promise.t(array((string, Js.Null.t(string))))
array((string, string)) => Js.Promise.t(unit)
array((string, string)) => Js.Promise.t(unit)
array(string) => Js.Promise.t(unit)
unit => unit
string => asyncStorageState
Check the changelog for more informations about recent releases.
Read the contribution guidelines before contributing.
We want this community to be friendly and respectful to each other. Please read our full code of conduct so that you can understand what actions will and will not be tolerated.