CropImage/Sources/CropImage/PlatformImage.swift
infinitepower18 a74e54dd00 update docs
2024-03-28 15:25:13 +08:00

22 lines
475 B
Swift

//
// PlatformImage.swift
//
//
// Created by Shibo Lyu on 2023/7/21.
//
import Foundation
#if os(macOS)
import AppKit
/// The image object type, aliased to each platform.
///
/// On macOS, it's `NSImage` and on iOS/visionOS it's `UIImage`.
public typealias PlatformImage = NSImage
#else
import UIKit
/// The image object type, aliased to each platform.
///
/// On macOS, it's `NSImage` and on iOS/visionOS it's `UIImage`.
public typealias PlatformImage = UIImage
#endif