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.
2 parents 7dc0a58 + 4e6a779 commit 07ceeecCopy full SHA for 07ceeec
index.d.ts
@@ -0,0 +1,6 @@
1
+export default class AutoCheckElement extends HTMLElement {
2
+ readonly input: HTMLInputElement | null;
3
+ src: string;
4
+ csrf: string;
5
+ required: boolean;
6
+}
package.json
@@ -4,10 +4,12 @@
"description": "An input element that validates its value with a server endpoint.",
"repository": "github/auto-check-element",
"files": [
7
- "dist"
+ "dist",
8
+ "index.d.ts"
9
],
10
"main": "dist/index.umd.js",
11
"module": "dist/index.esm.js",
12
+ "types": "index.d.ts",
13
"scripts": {
14
"clean": "rm -rf dist/",
15
"lint": "github-lint",
0 commit comments