Created
December 4, 2023 15:45
-
-
Save vschep/f2cf9ed9c71ed7e11a8c55d6582d3e2e 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
| type ErrorInfo = | |
| | Unauthorized | |
| | InternalServerError | |
| type SendValue<'T> = | |
| | Uninitialized | |
| | Initial of 'T | |
| | Sending of 'T | |
| | Sent of 'T | |
| | SendFailed of 'T * ErrorInfo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment