mirror of
https://github.com/lil-org/tokenary.git
synced 2024-12-02 09:33:49 +03:00
12 lines
233 B
Swift
12 lines
233 B
Swift
// Copyright © 2022 Tokenary. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
#if os(iOS)
|
|
import UIKit
|
|
public typealias PlatformSpecificImage = UIImage
|
|
#elseif os(macOS)
|
|
import Cocoa
|
|
public typealias PlatformSpecificImage = NSImage
|
|
#endif
|