mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-01-05 04:32:52 +00:00
15 lines
316 B
Swift
15 lines
316 B
Swift
import Foundation
|
|
|
|
public protocol GridSection {
|
|
var height: CGFloat { get }
|
|
var hashValue: Int { get }
|
|
|
|
func isEqual(to: GridSection) -> Bool
|
|
func node() -> ASDisplayNode
|
|
}
|
|
|
|
public protocol GridItem {
|
|
var section: GridSection? { get }
|
|
func node(layout: GridNodeLayout) -> GridItemNode
|
|
}
|