Files
desktop/WirelessTextSyncer.Windows/Services/IKeyboardInjectionService.cs
2026-05-15 22:09:31 +08:00

13 lines
214 B
C#

namespace WirelessTextSyncer.Windows.Services;
public interface IKeyboardInjectionService
{
void InsertText(string text);
void ReplaceFocusedText(string text);
void Backspace();
void Enter();
}