mirror of
https://github.com/lil-org/wallet.git
synced 2025-01-07 21:57:09 +03:00
12 lines
201 B
Swift
12 lines
201 B
Swift
// Copyright © 2022 Tokenary. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
#if os(iOS)
|
|
import UIKit
|
|
public typealias Image = UIImage
|
|
#elseif os(macOS)
|
|
import Cocoa
|
|
public typealias Image = NSImage
|
|
#endif
|