Created
July 29, 2021 02:56
-
-
Save ElonPark/b9d820a968b905aa255b395ee2339b2d to your computer and use it in GitHub Desktop.
UserListPresentableListener without ReactorKit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MARK: - UserListPresentableListener | |
protocol UserListPresentableListener: AnyObject { | |
typealias Action = UserListPresentableAction | |
typealias State = UserListPresentableState | |
func sendAction(_ action: Action) | |
var state: Observable<State> { get } | |
var currentState: State { get } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment