From b7a543f8cb89492e912f38d655dbd850b139e431 Mon Sep 17 00:00:00 2001 From: Joseph Garrone Date: Tue, 11 Jun 2024 20:30:18 +0200 Subject: [PATCH] Do not export PageProps in the index --- src/account/index.ts | 1 - src/login/index.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/account/index.ts b/src/account/index.ts index c681ac28..cbe11f05 100644 --- a/src/account/index.ts +++ b/src/account/index.ts @@ -1,4 +1,3 @@ export type { ExtendKcContext } from "keycloakify/account/KcContext"; export type { ClassKey } from "keycloakify/account/TemplateProps"; -export type { PageProps } from "keycloakify/account/pages/PageProps"; export { createUseI18n } from "keycloakify/account/i18n"; diff --git a/src/login/index.ts b/src/login/index.ts index 6b812a88..7f4a231b 100644 --- a/src/login/index.ts +++ b/src/login/index.ts @@ -1,5 +1,4 @@ export type { ExtendKcContext, Attribute } from "keycloakify/login/KcContext"; export type { ClassKey } from "keycloakify/login/TemplateProps"; -export type { PageProps } from "keycloakify/login/pages/PageProps"; export { useDownloadTerms } from "keycloakify/login/lib/useDownloadTerms"; export { createUseI18n } from "keycloakify/login/i18n";