This commit is contained in:
Ali
2023-03-17 23:35:52 +04:00
parent 60db6559ea
commit a78924ccd9
23 changed files with 3226 additions and 536 deletions

View File

@@ -1025,6 +1025,14 @@ public extension TelegramEngine {
|> ignoreValues
}
}
public func exportChatFolder(filterId: Int32, title: String, peerIds: [PeerId]) -> Signal<ExportedChatFolderLink, ExportChatFolderError> {
return _internal_exportChatFolder(account: self.account, filterId: filterId, title: title, peerIds: peerIds)
}
public func getExportedChatLinks(id: Int32) -> Signal<[ExportedChatFolderLink], NoError> {
return _internal_getExportedChatLinks(account: self.account, id: id)
}
}
}