Created
November 13, 2020 14:21
-
-
Save sayler8182/660e7aaf93dbf1677051f91f948d4cdb to your computer and use it in GitHub Desktop.
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: UpdatesProtocol | |
public protocol UpdatesProtocol { | |
func check(completion: @escaping ((UpdatesStatus) -> Void)) | |
func check(cancelToken: CancelToken?, completion: @escaping ((UpdatesStatus) -> Void)) | |
func reset() | |
func postpone() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment