mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
15 lines
493 B
Swift
15 lines
493 B
Swift
import Foundation
|
|
import UIKit
|
|
import AsyncDisplayKit
|
|
import Display
|
|
|
|
public protocol ItemListControllerEmptyStateItem {
|
|
func isEqual(to: ItemListControllerEmptyStateItem) -> Bool
|
|
func node(current: ItemListControllerEmptyStateItemNode?) -> ItemListControllerEmptyStateItemNode
|
|
}
|
|
|
|
open class ItemListControllerEmptyStateItemNode: ASDisplayNode {
|
|
open func updateLayout(layout: ContainerViewLayout, navigationBarHeight: CGFloat, transition: ContainedViewLayoutTransition) {
|
|
}
|
|
}
|