(input: string | undefined)
| 169 | } |
| 170 | |
| 171 | export function parseSwipePreset(input: string | undefined): SwipePreset { |
| 172 | return SWIPE_PRESET_ENUM.parse(input); |
| 173 | } |
| 174 | |
| 175 | export function inferGestureReferenceFrame( |
| 176 | nodes: Array<Pick<SnapshotNode, 'type' | 'rect'>>, |
no test coverage detected
searching dependent graphs…