17 lines
412 B
C
17 lines
412 B
C
|
/**
|
||
|
* Copyright (c) Joseph P. Ferraro
|
||
|
*
|
||
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file here: https://github.com/joeferraro/react-native-cookies/blob/master/LICENSE.md.
|
||
|
*/
|
||
|
|
||
|
#import <React/RCTBridgeModule.h>
|
||
|
|
||
|
#import <WebKit/WebKit.h>
|
||
|
|
||
|
@interface RNCookieManagerIOS : NSObject <RCTBridgeModule>
|
||
|
|
||
|
@property (nonatomic, strong) NSDateFormatter *formatter;
|
||
|
|
||
|
@end
|