Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export default class RemoteInputElement extends HTMLElement {
readonly input?: HTMLInputElement;
src: string;
}
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@
"description": "An input element that sends its value to a server endpoint and renders the response body.",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"types": "index.d.ts",
"license": "MIT",
"repository": "github/remote-input-element",
"files": [
"dist"
"dist",
"index.d.ts"
],
"scripts": {
"clean": "rm -rf dist",
Expand Down