Created
December 6, 2021 12:44
-
-
Save barisuyar/deccdf23cd8409d8dfe86fef03e708c4 to your computer and use it in GitHub Desktop.
Permission Creation
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
| protocol Permission { | |
| associatedtype PermissionType | |
| var status: PermissionType { get } | |
| func request(completion: @escaping (PermissionType) -> ()) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment