16 lines
374 B
Swift
16 lines
374 B
Swift
//
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
// Any view that exposes a read-only image that can be used for transitions
|
|
public protocol PrimaryImageView: UIView {
|
|
var primaryImage: UIImage? { get }
|
|
}
|
|
|
|
extension UIImageView: PrimaryImageView {
|
|
public var primaryImage: UIImage? { image }
|
|
}
|