31 lines
850 B
Objective-C
31 lines
850 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"
|
|
|
|
#import "WebKitDefines.h"
|
|
|
|
// SPI
|
|
#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
|