1[Client=KeyboardAPI]
2interface KeyboardUIHandlerMojo {
3 SendKeyEvent(string? event_type,
4 int32 char_value,
5 int32 key_code,
6 string? key_name,
7 int32 modifiers);
8
9 HideKeyboard();
10};
11
12interface KeyboardAPI {
13 OnTextInputTypeChanged(string? input_type);
14};
15