add typescript definition file

This commit is contained in:
Kristján Oddsson 2019-07-02 10:31:55 +01:00
Родитель 06128e7705
Коммит 0b79c40f3b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F5C58CF9F8FE5D63
2 изменённых файлов: 7 добавлений и 1 удалений

4
index.d.ts поставляемый Normal file
Просмотреть файл

@ -0,0 +1,4 @@
export default class ImageCropElement extends HTMLElement {
src?: string
loaded?: boolean
}

Просмотреть файл

@ -4,9 +4,11 @@
"description": "Select area for cropping an image. This does not actually crop.",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"types": "index.d.ts",
"files": [
"dist",
"index.css"
"index.css",
"index.d.ts"
],
"scripts": {
"clean": "rm -rf dist",