//
// MainLoop.cs: IMainLoopDriver and MainLoop for Terminal.Gui
//
// Authors:
// Miguel de Icaza (miguel@gnome.org)
//
namespace Terminal.Gui;
/// Provides data for timers running manipulation.
public sealed class Timeout
{
/// The function that will be invoked.
public Func Callback;
/// Time to wait before invoke the callback.
public TimeSpan Span;
}