forked from TiLied/CSharpToJavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEventTarget.cs
More file actions
17 lines (15 loc) · 915 Bytes
/
EventTarget.cs
File metadata and controls
17 lines (15 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSharpToJavaScript.APIs.JS
{
public partial class EventTarget
{
public CSharpToJavaScript.Utils.Unsupported /*undefined*/ AddEventListener(string type, Action? callback, Union41 options) { throw new System.NotImplementedException(); }
public CSharpToJavaScript.Utils.Unsupported /*undefined*/ AddEventListener(string type, Action<MouseEvent>? callback, Union41 options) { throw new System.NotImplementedException(); }
public CSharpToJavaScript.Utils.Unsupported /*undefined*/ AddEventListener(string type, Action<Event>? callback, Union41 options) { throw new System.NotImplementedException(); }
public CSharpToJavaScript.Utils.Unsupported /*undefined*/ RemoveEventListener(string type, Action? callback, Union2 options) { throw new System.NotImplementedException(); }
}
}