Swiftgram/submodules/TelegramUI/Sources/ChatRecentActionsInteraction.swift
2020-02-20 18:08:36 +04:00

10 lines
212 B
Swift

import Foundation
final class ChatRecentActionsInteraction {
let displayInfoAlert: () -> Void
init(displayInfoAlert: @escaping () -> Void) {
self.displayInfoAlert = displayInfoAlert
}
}