Index: client/html/generated/html/frog/KeyboardEvent.dart |
diff --git a/client/html/generated/html/frog/KeyboardEvent.dart b/client/html/generated/html/frog/KeyboardEvent.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..120bd3907f6b29ef9e25b66de412e4c5eb6f6467 |
--- /dev/null |
+++ b/client/html/generated/html/frog/KeyboardEvent.dart |
@@ -0,0 +1,19 @@ |
+ |
+class _KeyboardEventImpl extends _UIEventImpl implements KeyboardEvent native "*KeyboardEvent" { |
+ |
+ final bool altGraphKey; |
+ |
+ final bool altKey; |
+ |
+ final bool ctrlKey; |
+ |
+ final String keyIdentifier; |
+ |
+ final int keyLocation; |
+ |
+ final bool metaKey; |
+ |
+ final bool shiftKey; |
+ |
+ void initKeyboardEvent(String type, bool canBubble, bool cancelable, _WindowImpl view, String keyIdentifier, int keyLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) native; |
+} |