mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-24 16:46:02 +02:00
7 lines
184 B
Swift
7 lines
184 B
Swift
import Foundation
|
|
|
|
public protocol ActionSheetItem {
|
|
func node(theme: ActionSheetControllerTheme) -> ActionSheetItemNode
|
|
func updateNode(_ node: ActionSheetItemNode) -> Void
|
|
}
|