13 lines
214 B
C#
13 lines
214 B
C#
namespace WirelessTextSyncer.Windows.Services;
|
|
|
|
public interface IKeyboardInjectionService
|
|
{
|
|
void InsertText(string text);
|
|
|
|
void ReplaceFocusedText(string text);
|
|
|
|
void Backspace();
|
|
|
|
void Enter();
|
|
}
|