using System.Threading.Tasks; #nullable enable namespace Capnp.Rpc { /// /// A promised capability. /// public interface IResolvingCapability { /// /// Will eventually give the resolved capability. /// Task WhenResolved { get; } } } #nullable restore