fix: ambiguous usage of view output protocol

This commit is contained in:
Nikita Semenov 2022-11-17 10:32:04 +03:00
parent 401d9365d0
commit d2ed1e837a
2 changed files with 4 additions and 12 deletions

View File

@ -27,10 +27,10 @@ import UIKit
@available(iOS 15, *)
open class LogsListViewController: BaseInitializeableViewController,
LogsListViewOutput,
AlertPresentationContext,
UISearchBarDelegate,
UITextFieldDelegate {
LogsListViewOutput,
AlertPresentationContext,
UISearchBarDelegate,
UITextFieldDelegate {
private var timer: Timer?

View File

@ -24,14 +24,6 @@ import TISwiftUtils
import UIKit
import OSLog
public protocol LogsListViewOutput: AnyObject {
func reloadTableView()
func setLoadingState()
func setNormalState()
func startSearch()
func stopSearch()
}
@available(iOS 15, *)
open class LogsStorageViewModel {