(device: DeviceInfo, count: number)
| 15 | ]; |
| 16 | |
| 17 | export function shouldUseIosDragSeries(device: DeviceInfo, count: number): boolean { |
| 18 | return isApplePlatform(device.platform) && count > 1; |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * Whether a press series should fuse into one or more `sequence` runner requests. Every Apple |
no test coverage detected