-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEventTarget.cs
More file actions
20 lines (15 loc) · 927 Bytes
/
EventTarget.cs
File metadata and controls
20 lines (15 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using CSharpToJavaScript.APIs.JS.Ecma;
using CSharpToJavaScript.Utils;
using System;
namespace CSharpToJavaScript.APIs.JS;
public partial class EventTarget
{
[To(ToAttribute.FirstCharToLowerCase)]
public GlobalObject.Undefined AddEventListener(string type, Action? callback, Union26 options) { throw new System.NotImplementedException(); }
[To(ToAttribute.FirstCharToLowerCase)]
public GlobalObject.Undefined AddEventListener(string type, Action<MouseEvent>? callback, Union26 options) { throw new System.NotImplementedException(); }
[To(ToAttribute.FirstCharToLowerCase)]
public GlobalObject.Undefined AddEventListener(string type, Action<Event>? callback, Union26 options) { throw new System.NotImplementedException(); }
[To(ToAttribute.FirstCharToLowerCase)]
public GlobalObject.Undefined RemoveEventListener(string type, Action? callback, Union27 options) { throw new System.NotImplementedException(); }
}