Skip to content

Commit d505fce

Browse files
committed
update target package name
1 parent 6e03257 commit d505fce

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/ReactNativeAsyncStorage.re

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
1-
[@bs.scope "default"] [@bs.module "@react-native-community/async-storage"]
1+
[@bs.scope "default"] [@bs.module "@react-native-async-storage/async-storage"]
22
external getItem: string => Js.Promise.t(Js.Null.t(string)) = "getItem";
33

4-
[@bs.scope "default"] [@bs.module "@react-native-community/async-storage"]
4+
[@bs.scope "default"] [@bs.module "@react-native-async-storage/async-storage"]
55
external setItem: (string, string) => Js.Promise.t(unit) = "setItem";
66

7-
[@bs.scope "default"] [@bs.module "@react-native-community/async-storage"]
7+
[@bs.scope "default"] [@bs.module "@react-native-async-storage/async-storage"]
88
external removeItem: string => Js.Promise.t(unit) = "removeItem";
99

10-
[@bs.scope "default"] [@bs.module "@react-native-community/async-storage"]
10+
[@bs.scope "default"] [@bs.module "@react-native-async-storage/async-storage"]
1111
external mergeItem: (string, string) => Js.Promise.t(unit) = "mergeItem";
1212

13-
[@bs.scope "default"] [@bs.module "@react-native-community/async-storage"]
13+
[@bs.scope "default"] [@bs.module "@react-native-async-storage/async-storage"]
1414
external clear: unit => Js.Promise.t(unit) = "clear";
1515

16-
[@bs.scope "default"] [@bs.module "@react-native-community/async-storage"]
16+
[@bs.scope "default"] [@bs.module "@react-native-async-storage/async-storage"]
1717
external getAllKeys: unit => Js.Promise.t(Js.Null.t(array(string))) =
1818
"getAllKeys";
1919

20-
[@bs.scope "default"] [@bs.module "@react-native-community/async-storage"]
20+
[@bs.scope "default"] [@bs.module "@react-native-async-storage/async-storage"]
2121
external multiGet:
2222
array(string) => Js.Promise.t(array((string, Js.Null.t(string)))) =
2323
"multiGet";
2424

25-
[@bs.scope "default"] [@bs.module "@react-native-community/async-storage"]
25+
[@bs.scope "default"] [@bs.module "@react-native-async-storage/async-storage"]
2626
external multiSet: array((string, string)) => Js.Promise.t(unit) =
2727
"multiSet";
2828

29-
[@bs.scope "default"] [@bs.module "@react-native-community/async-storage"]
29+
[@bs.scope "default"] [@bs.module "@react-native-async-storage/async-storage"]
3030
external multiMerge: array((string, string)) => Js.Promise.t(unit) =
3131
"multiMerge";
3232

33-
[@bs.scope "default"] [@bs.module "@react-native-community/async-storage"]
33+
[@bs.scope "default"] [@bs.module "@react-native-async-storage/async-storage"]
3434
external multiRemove: array(string) => Js.Promise.t(unit) = "multiRemove";
3535

36-
[@bs.scope "default"] [@bs.module "@react-native-community/async-storage"]
36+
[@bs.scope "default"] [@bs.module "@react-native-async-storage/async-storage"]
3737
external flushGetRequests: unit => unit = "flushGetRequests";
3838

3939
type asyncStorageState = {
@@ -44,5 +44,5 @@ type asyncStorageState = {
4444
[@bs.meth] "removeItem": unit => Js.Promise.t(unit),
4545
};
4646

47-
[@bs.module "@react-native-community/async-storage"]
47+
[@bs.module "@react-native-async-storage/async-storage"]
4848
external useAsyncStorage: string => asyncStorageState = "useAsyncStorage";

0 commit comments

Comments
 (0)