mirror of
https://github.com/whoeevee/EeveeSpotifyReborn.git
synced 2026-01-09 00:23:20 +01:00
14 lines
326 B
Swift
14 lines
326 B
Swift
import UIKit
|
|
|
|
@objc protocol SPTEncorePopUpDialog {
|
|
func `init`() -> SPTEncorePopUpDialog
|
|
func uiView() -> UIView
|
|
func update(_ popUpModel: SPTEncorePopUpDialogModel)
|
|
func setEventHandler(_ handler: @escaping (_ state: ClickState) -> Void)
|
|
}
|
|
|
|
@objc enum ClickState: Int {
|
|
case primary
|
|
case secondary
|
|
}
|