Files
divkit/client/ios/DivKitExtensions/Animations/AnimatableView.swift
T
morevsavva 52ccd56888 Format files by codestyle.
Прогнал форматтер на всех файлах.
2022-12-22 16:21:24 +03:00

21 lines
397 B
Swift

import Foundation
import Base
import LayoutKit
public protocol AnimatableViewFactory: AnyObject {
func createAnimatableView(withMode mode: AnimationRepeatMode, repeatCount count: Float)
-> AnimatableView
}
public protocol AnimatableView: ViewType {
func play()
func setSource(_ source: AnimationSourceType)
}
@frozen
public enum AnimationRepeatMode {
case restart
case reverse
}