Skip to content

Commit

Permalink
Merge branches 'kw/fix/ios-replay-redact' and 'kw/fix/ios-replay-reda…
Browse files Browse the repository at this point in the history
…ct' of github.com:getsentry/sentry-react-native into kw/fix/ios-replay-redact
  • Loading branch information
krystofwoldrich committed Nov 7, 2024
2 parents b4e79be + d226e9e commit f3bb712
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions packages/core/RNSentryCocoaTester/RNSentryTests.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#import <Foundation/Foundation.h>
#import <RNSentry/RNSentry.h>

@interface
SentrySDK (PrivateTests)
- (nullable SentryOptions *)options;
@end

@interface SentryBinaryImageInfo : NSObject
@property (nonatomic, strong) NSString *name;
@property (nonatomic) uint64_t address;
@property (nonatomic) uint64_t size;
@end

@interface SentryBinaryImageCache : NSObject
@property (nonatomic, readonly, class) SentryBinaryImageCache *shared;
- (void)start;
- (void)stop;
- (nullable SentryBinaryImageInfo *)imageByAddress:(const uint64_t)address;
@end

@interface SentryDependencyContainer : NSObject
+ (instancetype)sharedInstance;
@property (nonatomic, strong) SentryDebugImageProvider *debugImageProvider;
@property (nonatomic, strong) SentryBinaryImageCache *binaryImageCache;
@end

0 comments on commit f3bb712

Please sign in to comment.