Skip to content
Snippets Groups Projects
UIViewAnimating.swift 244 B
Newer Older
Bruno Muniz's avatar
Bruno Muniz committed
import UIKit
import Shared

public protocol UIViewAnimating {
  static func animate(
    withDuration duration: TimeInterval,
    animations: @escaping EmptyClosure,
    completion: ((Bool) -> Void)?
  )
}

extension UIView: UIViewAnimating {}