From f2741e6396f97d92695974f0de5e415c2f5a29d4 Mon Sep 17 00:00:00 2001 From: sage Date: Thu, 3 Feb 2022 18:46:24 +0700 Subject: [PATCH] :label: (vue) Fix exported types in vue component --- packages/vue/lib/index.ts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/packages/vue/lib/index.ts b/packages/vue/lib/index.ts index 4cf45b04..67ced153 100644 --- a/packages/vue/lib/index.ts +++ b/packages/vue/lib/index.ts @@ -7,7 +7,7 @@ const plugin: Plugin = { export { Giscus, plugin } -export type { +import type { GiscusProps, BooleanString, InputPosition, @@ -17,3 +17,14 @@ export type { Theme, Lang } from '@shared/types' + +export type { + GiscusProps, + BooleanString, + InputPosition, + Session, + Repo, + Mapping, + Theme, + Lang +}