Files
LanMountainDesktop/airapp/LanMountainDesktop.AirAppSdk/IComponentEditorHostContext.cs

11 lines
191 B
C#
Raw Normal View History

2026-08-11 23:03:55 +08:00
namespace LanMountainDesktop.AirAppSdk;
2026-03-14 22:45:09 +08:00
public interface IComponentEditorHostContext
{
void RequestRefresh();
void CloseEditor();
void RequestRestart(string? reason = null);
}