mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
15 lines
231 B
Swift
15 lines
231 B
Swift
import Foundation
|
|
|
|
enum ScrollMode: Hashable {
|
|
case forward(Int, overflow: OverflowMode)
|
|
case backward(Int, overflow: OverflowMode)
|
|
case position(Int)
|
|
case start
|
|
case end
|
|
}
|
|
|
|
enum OverflowMode {
|
|
case clamp
|
|
case ring
|
|
}
|