From 022339faf4ad2228a4acc7ddc0ebfc26997e99ff Mon Sep 17 00:00:00 2001 From: Carlos Serrano Date: Wed, 28 Feb 2024 06:32:21 +0100 Subject: [PATCH] fix(esm build): add extension to types import --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 5050728..230cb7c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,5 +2,5 @@ * @module @carpasse/dapi */ export {DapiMixin, type DapiDefinition, type DapiWrapper} from './DapiMixin.js'; -export type {DapiFns, DapiFn, DecoratorFn, HookFn} from './types'; +export type {DapiFns, DapiFn, DecoratorFn, HookFn} from './types/index.js'; export {createDapi} from './createDapi.js';