Last active
November 24, 2021 19:38
-
-
Save vikingosegundo/a0d3c3ecebd3586c59d5a568e5ea9497 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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