namespace Terminal.Gui.App;
public static partial class Application // Clipboard handling
{
///
/// Gets the clipboard for the application.
///
///
///
/// Provides access to the OS clipboard through the driver.
///
///
[Obsolete ("The legacy static Application object is going away. Use IApplication.Clipboard instead.")]
public static IClipboard? Clipboard => ApplicationImpl.Instance.Clipboard;
}