Swiftgram/submodules/ItemListUI/Sources/ItemListControllerEmptyStateItem.swift
2019-08-02 02:18:20 +03:00

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) {
}
}