mirror of
https://github.com/callstack/agent-device.git
synced 2026-09-14 20:06:34 +08:00
20 lines
791 B
Objective-C
20 lines
791 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RunnerSynthesizedGesture : NSObject
|
|
|
|
+ (NSString * _Nullable)synthesizeTransformWithApplication:(id)application
|
|
x:(double)x
|
|
y:(double)y
|
|
dx:(double)dx
|
|
dy:(double)dy
|
|
scale:(double)scale
|
|
degrees:(double)degrees
|
|
radius:(double)radius
|
|
durationMs:(double)durationMs;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|