We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec74ac2 commit 2a1bc46Copy full SHA for 2a1bc46
CSharpToJavaScript/APIs/JS/CustomElementRegistry.cs
@@ -0,0 +1,12 @@
1
+using CSharpToJavaScript.APIs.JS.Ecma;
2
+using CSharpToJavaScript.Utils;
3
+using System;
4
+
5
+namespace CSharpToJavaScript.APIs.JS;
6
7
+[To(ToAttribute.FirstCharToLowerCase)]
8
+public partial class CustomElementRegistry
9
+{
10
+ [GenericAsArgument]
11
+ public GlobalObject.Undefined Define<C>(string name) { throw new NotImplementedException(); }
12
+}
0 commit comments