From b6918ae7090308e8812847588f410c96fb6075da Mon Sep 17 00:00:00 2001 From: Mark Date: Mon, 12 Feb 2024 15:27:43 -0500 Subject: [PATCH] fix(esm): fix exported types Relates to #669 --- esm/index.d.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esm/index.d.mts b/esm/index.d.mts index 50a4d947..e2dc808e 100644 --- a/esm/index.d.mts +++ b/esm/index.d.mts @@ -1,2 +1,2 @@ export { default } from './server/html-to-dom.mjs'; -export type * from './types'; +export type * from './types.ts';