Files
Attractor/App/Supporting Files/SBrowser-Bridging-Header.h
2021-10-21 16:14:42 -07:00

30 lines
861 B
Objective-C

//
// Use this file to import your target's public headers that you would like to expose to Swift.
//
#import "SBRProcessBundleBridge.h"
#import "SBRScriptPolicy.h"
// SPI
#import <UIKit/UITextField_Private.h>
#import <WebKit/WKWebViewPrivate.h>
#import <WebKit/_WKFindDelegate.h>
@interface WKContentView : UIView
@property (nonatomic, readonly) BOOL isFocusingElement;
@end
@interface WKWebView (Internal)
- (WKContentView *)_currentContentView;
@end
@interface UIView (Internal)
typedef NS_ENUM(NSInteger, _UIViewSceneDraggingBehaviorOnPan) {
_UIViewSceneDraggingBehaviorOnPanPassthrough = 0,
_UIViewSceneDraggingBehaviorOnPanDragScene,
_UIViewSceneDraggingBehaviorOnPanDoNotDragScene,
} API_AVAILABLE(ios(13.0));
@property (nonatomic, readonly) _UIViewSceneDraggingBehaviorOnPan _sceneDraggingBehaviorOnPan API_AVAILABLE(ios(13.0));
@end