mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
19 lines
378 B
Swift
19 lines
378 B
Swift
import Foundation
|
|
import AsyncDisplayKit
|
|
import Display
|
|
|
|
class ChatInputContextPanelNode: ASDisplayNode {
|
|
var interfaceInteraction: ChatPanelInterfaceInteraction?
|
|
|
|
func updateFrames(transition: ContainedViewLayoutTransition) {
|
|
}
|
|
|
|
func animateIn() {
|
|
|
|
}
|
|
|
|
func animateOut(completion: @escaping () -> Void) {
|
|
completion()
|
|
}
|
|
}
|