From ca5c7ab0ecb3adecaecb66052e37d096e0d45bb1 Mon Sep 17 00:00:00 2001 From: Bert De Block Date: Wed, 7 Sep 2022 10:33:45 +0200 Subject: [PATCH] fix: exporting `LinkParams` and `UILinkParams` types --- addon/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/addon/index.ts b/addon/index.ts index efc5c39a..3c4f3627 100644 --- a/addon/index.ts +++ b/addon/index.ts @@ -1 +1,2 @@ -export { default as Link, UILink, LinkParams, UILinkParams } from './link'; +export { default as Link, UILink } from './link'; +export type { LinkParams, UILinkParams } from './link';