From f9994ad69f2354c8896ac5e514235fe9d21df476 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCn?= <74139498+gurgunday@users.noreply.github.com> Date: Mon, 23 Jan 2023 21:39:53 +0100 Subject: [PATCH] fix type declaration (#213) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Gün Closes https://github.com/eta-dev/eta/issues/207 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 93aff75..04c3341 100644 --- a/package.json +++ b/package.json @@ -18,10 +18,10 @@ "umd:main": "./dist/eta.umd.js", "unpkg": "./dist/browser.min.umd.js", "module": "./dist/eta.module.mjs", - "types": "./dist/types/eta.d.ts", + "types": "./dist/types/index.d.ts", "source": "src/index.ts", "exports": { - "types": "./dist/types/eta.d.ts", + "types": "./dist/types/index.d.ts", "browser": "./dist/browser.min.umd.js", "require": "./dist/eta.umd.js", "import": "./dist/eta.module.mjs",