mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
16 lines
419 B
Swift
16 lines
419 B
Swift
import Foundation
|
|
import UIKit
|
|
import AsyncDisplayKit
|
|
import TelegramPresentationData
|
|
|
|
class AccessoryPanelNode: ASDisplayNode {
|
|
var dismiss: (() -> Void)?
|
|
var interfaceInteraction: ChatPanelInterfaceInteraction?
|
|
|
|
func updateThemeAndStrings(theme: PresentationTheme, strings: PresentationStrings) {
|
|
}
|
|
|
|
func updateState(size: CGSize, interfaceState: ChatPresentationInterfaceState) {
|
|
}
|
|
}
|