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