namespace Spectre.Console.Cli;
///
/// Represents a type resolver.
///
public interface ITypeResolver
{
///
/// Resolves an instance of the specified type.
///
/// The type to resolve.
/// An instance of the specified type, or null if no registration for the specified type exists.
object? Resolve(Type? type);
}