Files
FileTime2/src/AppCommon/FileTime.App.CommandPalette.Abstractions/ViewModels/ICommandPaletteViewModel.cs
2023-08-19 21:18:16 +02:00

13 lines
419 B
C#

using DeclarativeProperty;
using FileTime.App.Core.ViewModels;
using FileTime.App.FuzzyPanel;
using GeneralInputKey;
namespace FileTime.App.CommandPalette.ViewModels;
public interface ICommandPaletteViewModel : IFuzzyPanelViewModel<ICommandPaletteEntryViewModel>, IModalViewModel
{
IDeclarativeProperty<bool> ShowWindow { get; }
void Close();
Task<bool> HandleKeyUp(GeneralKeyEventArgs keyEventArgs);
}