using System.Windows; using Flow.Launcher.Plugin; namespace Flow.Launcher.Core; /// /// Extension properties and functions of the current application singleton object. /// public static class AppExtensions { /// /// Gets the public API of the current application singleton object. /// public static IPublicAPI API => (Application.Current as IApp)!.PublicAPI; }