We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b899d0 commit 9a5af7eCopy full SHA for 9a5af7e
index.d.ts
@@ -0,0 +1,4 @@
1
+export default class RemoteInputElement extends HTMLElement {
2
+ readonly input?: HTMLInputElement;
3
+ src: string;
4
+}
package.json
@@ -4,10 +4,12 @@
"description": "An input element that sends its value to a server endpoint and renders the response body.",
5
"main": "dist/index.umd.js",
6
"module": "dist/index.esm.js",
7
+ "types": "index.d.ts",
8
"license": "MIT",
9
"repository": "github/remote-input-element",
10
"files": [
- "dist"
11
+ "dist",
12
+ "index.d.ts"
13
],
14
"scripts": {
15
"clean": "rm -rf dist",
0 commit comments