We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06128e7 commit 0b79c40Copy full SHA for 0b79c40
index.d.ts
@@ -0,0 +1,4 @@
1
+export default class ImageCropElement extends HTMLElement {
2
+ src?: string
3
+ loaded?: boolean
4
+}
package.json
@@ -4,9 +4,11 @@
"description": "Select area for cropping an image. This does not actually crop.",
5
"main": "dist/index.umd.js",
6
"module": "dist/index.esm.js",
7
+ "types": "index.d.ts",
8
"files": [
9
"dist",
- "index.css"
10
+ "index.css",
11
+ "index.d.ts"
12
],
13
"scripts": {
14
"clean": "rm -rf dist",
0 commit comments