mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
15 lines
424 B
C#
15 lines
424 B
C#
using System.Windows;
|
|
using Flow.Launcher.Plugin;
|
|
|
|
namespace Flow.Launcher.Core;
|
|
|
|
/// <summary>
|
|
/// Extension properties and functions of the current application singleton object.
|
|
/// </summary>
|
|
public static class AppExtensions
|
|
{
|
|
/// <summary>
|
|
/// Gets the public API of the current application singleton object.
|
|
/// </summary>
|
|
public static IPublicAPI API => (Application.Current as IApp)!.PublicAPI;
|
|
}
|