(direction: string)
| 209 | } |
| 210 | |
| 211 | export function parseScrollDirection(direction: string): ScrollDirection { |
| 212 | return SCROLL_DIRECTION_ENUM.parse(direction); |
| 213 | } |
| 214 | |
| 215 | function scrollDirectionForFingerSwipe(direction: ScrollDirection): ScrollDirection { |
| 216 | switch (direction) { |
no test coverage detected