mirror of
https://github.com/status-im/react-native-randombytes.git
synced 2026-08-27 17:11:12 +00:00
* Updating RNRandomBytes.h to comply with React Native updates. * Updating RNRandomBytes.m to comply with React Native updates.
16 lines
298 B
Objective-C
16 lines
298 B
Objective-C
//
|
|
// RNRandomBytes.h
|
|
// randombytes
|
|
//
|
|
// Created by Mark Vayngrib on 10/13/15.
|
|
// Copyright (c) 2015 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <React/RCTBridgeModule.h>
|
|
#import <React/RCTBridge.h>
|
|
|
|
@interface RNRandomBytes : NSObject<RCTBridgeModule>
|
|
|
|
@end
|