From 9278a17b2e246acaa0be63fbe6c80191dd260e15 Mon Sep 17 00:00:00 2001 From: Jonas-Merlin Schumacher Date: Sun, 3 Mar 2024 11:52:22 +0100 Subject: [PATCH] improvement: re-export Props as SEOProps --- src/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/index.ts b/src/index.ts index afb8aa1..5421f4e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,3 +3,9 @@ export { default as SEO } from "./SEO.astro"; // @ts-ignore export * from "./SEO.astro"; + +// @ts-ignore +import { Props } from "./SEO.astro"; + +// @ts-ignore +export type SEOProps = Props; \ No newline at end of file