mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
17 lines
346 B
Swift
17 lines
346 B
Swift
// Generated code. Do not modify.
|
|
|
|
import CommonCore
|
|
import Foundation
|
|
import Serialization
|
|
import TemplatesSupport
|
|
|
|
@frozen
|
|
public enum DivAnimationInterpolator: String, CaseIterable {
|
|
case linear = "linear"
|
|
case ease = "ease"
|
|
case easeIn = "ease_in"
|
|
case easeOut = "ease_out"
|
|
case easeInOut = "ease_in_out"
|
|
case spring = "spring"
|
|
}
|