using System.Collections.Concurrent;
namespace Terminal.Gui.App;
public static partial class Application // TopRunnable handling
{
/// The that is on the top of the .
/// The top runnable.
[Obsolete ("The legacy static Application object is going away.")]
public static View? TopRunnableView => ApplicationImpl.Instance.TopRunnableView;
/// The that is on the top of the .
/// The top runnable.
[Obsolete ("The legacy static Application object is going away.")]
public static IRunnable? TopRunnable => ApplicationImpl.Instance.TopRunnable;
}