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 aee0e57 + da52c77 commit fa5748eCopy full SHA for fa5748e
index.d.ts
@@ -0,0 +1,5 @@
1
+interface Subscription {
2
+ unsubscribe: () => void
3
+}
4
+
5
+export default function checkAll(container: Element): Subscription;
package.json
@@ -4,10 +4,12 @@
"version": "0.2.4",
"main": "dist/check-all.umd.js",
6
"module": "dist/check-all.esm.js",
7
+ "types": "index.d.ts",
8
"license": "MIT",
9
"repository": "github/check-all",
10
"files": [
- "dist"
11
+ "dist",
12
+ "index.d.ts"
13
],
14
"scripts": {
15
"clean": "rm -rf dist",
0 commit comments