|
2 | 2 | using CSharpToJavaScript.Utils; |
3 | 3 | using System; |
4 | 4 |
|
5 | | -namespace CSharpToJavaScript.APIs.JS |
| 5 | +namespace CSharpToJavaScript.APIs.JS; |
| 6 | + |
| 7 | +public partial class EventTarget |
6 | 8 | { |
7 | | - public partial class EventTarget |
8 | | - { |
9 | | - [To(ToAttribute.FirstCharToLowerCase)] |
10 | | - public GlobalObject.Undefined AddEventListener(string type, Action? callback, Union26 options) { throw new System.NotImplementedException(); } |
11 | | - [To(ToAttribute.FirstCharToLowerCase)] |
12 | | - public GlobalObject.Undefined AddEventListener(string type, Action<MouseEvent>? callback, Union26 options) { throw new System.NotImplementedException(); } |
13 | | - [To(ToAttribute.FirstCharToLowerCase)] |
14 | | - public GlobalObject.Undefined AddEventListener(string type, Action<Event>? callback, Union26 options) { throw new System.NotImplementedException(); } |
15 | | - |
16 | | - [To(ToAttribute.FirstCharToLowerCase)] |
17 | | - public GlobalObject.Undefined RemoveEventListener(string type, Action? callback, Union27 options) { throw new System.NotImplementedException(); } |
| 9 | + [To(ToAttribute.FirstCharToLowerCase)] |
| 10 | + public GlobalObject.Undefined AddEventListener(string type, Action? callback, Union26 options) { throw new System.NotImplementedException(); } |
| 11 | + [To(ToAttribute.FirstCharToLowerCase)] |
| 12 | + public GlobalObject.Undefined AddEventListener(string type, Action<MouseEvent>? callback, Union26 options) { throw new System.NotImplementedException(); } |
| 13 | + [To(ToAttribute.FirstCharToLowerCase)] |
| 14 | + public GlobalObject.Undefined AddEventListener(string type, Action<Event>? callback, Union26 options) { throw new System.NotImplementedException(); } |
18 | 15 |
|
19 | | - } |
| 16 | + [To(ToAttribute.FirstCharToLowerCase)] |
| 17 | + public GlobalObject.Undefined RemoveEventListener(string type, Action? callback, Union27 options) { throw new System.NotImplementedException(); } |
| 18 | + |
20 | 19 | } |
| 20 | + |
0 commit comments