Skip to content

Instantly share code, notes, and snippets.

@dmytro-anokhin
Created August 19, 2020 22:10
Show Gist options
  • Save dmytro-anokhin/73500da38ea381d13c33afc77077f252 to your computer and use it in GitHub Desktop.
Save dmytro-anokhin/73500da38ea381d13c33afc77077f252 to your computer and use it in GitHub Desktop.
protocol RemoteContent : ObservableObject {
associatedtype Value
var loadingState: RemoteContentLoadingState<Value> { get }
func load()
func cancel()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment