TM-SGNL-iOS/SignalUI/Views/PrimaryImageView.swift
TeleMessage developers dde0620daf initial commit
2025-05-03 12:28:28 -07:00

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 }
}