@@ -21,7 +21,7 @@ The delegate must conform to the protocol `RNCAsyncStorageDelegate`:
21
21
Returns all keys currently stored. If none, an empty array is returned.
22
22
Called by ` getAllKeys ` in JS.
23
23
24
- < br />
24
+ ---
25
25
26
26
``` objc
27
27
- (void )mergeValues:(NSArray <NSString *> *)values
@@ -32,15 +32,15 @@ Called by `getAllKeys` in JS.
32
32
Merges values with the corresponding values stored at specified keys.
33
33
Called by ` mergeItem ` and ` multiMerge ` in JS.
34
34
35
- < br />
35
+ ---
36
36
37
37
``` objc
38
38
- (void )removeAllValues:(RNCAsyncStorageCompletion)block;
39
39
```
40
40
41
41
Removes all values from the store. Called by ` clear ` in JS.
42
42
43
- < br />
43
+ ---
44
44
45
45
``` objc
46
46
- (void )removeValuesForKeys:(NSArray <NSString *> *)keys
@@ -50,7 +50,7 @@ Removes all values from the store. Called by `clear` in JS.
50
50
Removes all values associated with specified keys.
51
51
Called by ` removeItem ` and ` multiRemove ` in JS.
52
52
53
- < br />
53
+ ---
54
54
55
55
``` objc
56
56
- (void )setValues:(NSArray <NSString *> *)values
@@ -60,7 +60,7 @@ Called by `removeItem` and `multiRemove` in JS.
60
60
61
61
Sets specified key-value pairs. Called by ` setItem ` and ` multiSet ` in JS.
62
62
63
- < br />
63
+ ---
64
64
65
65
``` objc
66
66
- (void )valuesForKeys:(NSArray <NSString *> *)keys
@@ -70,7 +70,7 @@ Sets specified key-value pairs. Called by `setItem` and `multiSet` in JS.
70
70
Returns values associated with specified keys.
71
71
Called by ` getItem ` and ` multiGet ` in JS.
72
72
73
- < br />
73
+ ---
74
74
75
75
``` objc
76
76
@optional
0 commit comments