File tree 1 file changed +9
-4
lines changed
packages/default-storage/ios
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change 27
27
*
28
28
* Keys and values must always be strings or an error is returned.
29
29
*/
30
+
31
+ NS_ASSUME_NONNULL_BEGIN
32
+
30
33
@interface RNCAsyncStorage : NSObject <
31
34
#ifdef RCT_NEW_ARCH_ENABLED
32
35
NativeAsyncStorageModuleSpec
50
53
51
54
// Grab data from the cache. ResponseBlock result array will have an error at position 0, and an
52
55
// array of arrays at position 1.
53
- - (void )multiGet : (NSArray <NSString *> *_Nullable )keys callback : (RCTResponseSenderBlock _Nullable )callback ;
56
+ - (void )multiGet : (NSArray <NSString *> *)keys callback : (RCTResponseSenderBlock)callback ;
54
57
55
58
// Add multiple key value pairs to the cache.
56
- - (void )multiSet : (NSArray <NSArray<NSString *> *> *_Nullable )kvPairs
57
- callback : (RCTResponseSenderBlock _Nullable )callback ;
59
+ - (void )multiSet : (NSArray <NSArray<NSString *> *> *)kvPairs
60
+ callback : (RCTResponseSenderBlock)callback ;
58
61
59
62
// Interface for natively fetching all the keys from the storage data.
60
- - (void )getAllKeys : (RCTResponseSenderBlock _Nullable )callback ;
63
+ - (void )getAllKeys : (RCTResponseSenderBlock )callback ;
61
64
62
65
@end
66
+
67
+ NS_ASSUME_NONNULL_END
You can’t perform that action at this time.
0 commit comments