From babc13ded676b5acf2fd7471f14cff40e4e2106f Mon Sep 17 00:00:00 2001 From: pprevautel Date: Thu, 12 Jun 2025 13:08:43 +0200 Subject: [PATCH] feat: export Link type in Summary.tsx --- src/Summary.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Summary.tsx b/src/Summary.tsx index 4d6926978..b804186ea 100644 --- a/src/Summary.tsx +++ b/src/Summary.tsx @@ -11,7 +11,7 @@ import type { RegisteredLinkProps } from "./link"; import { useAnalyticsId } from "./tools/useAnalyticsId"; import { generateValidHtmlId } from "./tools/generateValidHtmlId"; -type Link = { +export type Link = { text: string; linkProps: RegisteredLinkProps; subLinks?: Link[];