Skip to content

Instantly share code, notes, and snippets.

@vikingosegundo
Last active November 24, 2021 19:38
Show Gist options
  • Save vikingosegundo/a0d3c3ecebd3586c59d5a568e5ea9497 to your computer and use it in GitHub Desktop.
Save vikingosegundo/a0d3c3ecebd3586c59d5a568e5ea9497 to your computer and use it in GitHub Desktop.
typealias Access = ( ) -> AppState
typealias Change = ( AppState.Change... ) -> ()
typealias Reset = ( ) -> ()
typealias Callback = ( @escaping () -> () ) -> ()
typealias Destroy = ( ) -> ()
typealias Store = ( state: Access, change: Change, reset: Reset, updated: Callback, destroy: Destroy )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment