Skip to content

Instantly share code, notes, and snippets.

@vschep
Created December 4, 2023 15:45
Show Gist options
  • Select an option

  • Save vschep/f2cf9ed9c71ed7e11a8c55d6582d3e2e to your computer and use it in GitHub Desktop.

Select an option

Save vschep/f2cf9ed9c71ed7e11a8c55d6582d3e2e to your computer and use it in GitHub Desktop.
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