1234567891011121314151617 |
- //
- // KMAdvertisementBaseView.swift
- // KMAdvertisement
- //
- // Created by lizhe on 2022/12/3.
- //
- #if os(OSX)
- import AppKit
- #elseif os(iOS)
- import UIKit
- #endif
- public typealias KMAdvertisementActionCompletion = (_ actionItem: KMAdvertisementModel.Section.Content) -> Void
- open class KMAdvertisementBaseView: NSView {
- public var actionCompletion: KMAdvertisementActionCompletion?
- }
|