mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-29 09:01:05 +00:00
15 lines
323 B
Swift
15 lines
323 B
Swift
import Foundation
|
|
import AsyncDisplayKit
|
|
|
|
open class AlertContentNode: ASDisplayNode {
|
|
open var dismissOnOutsideTap: Bool {
|
|
return true
|
|
}
|
|
|
|
open func updateLayout(size: CGSize, transition: ContainedViewLayoutTransition) -> CGSize {
|
|
assertionFailure()
|
|
|
|
return CGSize()
|
|
}
|
|
}
|