This file contains 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
open System | |
// Replace with your type | |
type MyType<'a> = Async<'a> | |
type Internal<'a> = MyType<'a> | |
// Replace with types that feel similar and can be converted to `MyType` | |
type External1<'a> = System.Threading.Tasks.Task<'a> | |
type External2<'a> = System.Threading.Tasks.ValueTask<'a> |