Files
Attractor/App/Supporting Files/SBrowser-Bridging-Header.h

30 lines
861 B
C
Raw Normal View History

//
// Use this file to import your target's public headers that you would like to expose to Swift.
//
#import "SBRProcessBundleBridge.h"
2021-10-21 11:05:40 -07:00
#import "SBRScriptPolicy.h"
2020-07-24 19:26:35 -07:00
// SPI
#import <UIKit/UITextField_Private.h>
2020-09-22 15:37:13 -07:00
#import <WebKit/WKWebViewPrivate.h>
2020-09-30 18:06:47 -07:00
#import <WebKit/_WKFindDelegate.h>
@interface WKContentView : UIView
@property (nonatomic, readonly) BOOL isFocusingElement;
@end
@interface WKWebView (Internal)
- (WKContentView *)_currentContentView;
@end
2021-10-21 16:14:42 -07:00
@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