You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-ios/SessionMessagingKit/Open Groups/OpenGroupAPI+ObjC.swift

9 lines
304 B
Swift

4 years ago
import PromiseKit
extension OpenGroupAPI {
4 years ago
@objc(deleteMessageWithServerID:fromRoom:onServer:)
public static func objc_deleteMessage(with serverID: Int64, from room: String, on server: String) -> AnyPromise {
return AnyPromise.from(messageDelete(serverID, in: room, on: server))
}
4 years ago
}