mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
62ead6a8ee
Add blur and tint mode implementation
9 lines
214 B
Swift
9 lines
214 B
Swift
// Copyright 2022 Yandex LLC. All rights reserved.
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
public protocol RemoteImageViewContentProtocol: UIView, ImageViewProtocol {
|
|
func setImage(_ image: UIImage?, animated: Bool?)
|
|
}
|