From cc3fc541d60bb6fb2adadc2b5e800f9d72b15498 Mon Sep 17 00:00:00 2001 From: Darya Umrikhina Date: Mon, 12 Aug 2024 10:53:00 +0400 Subject: [PATCH] Shared:Components: change import types --- packages/shared/components/email-input/index.tsx | 2 +- packages/shared/components/password-input/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/shared/components/email-input/index.tsx b/packages/shared/components/email-input/index.tsx index f88d9d0f4f..e5649910a2 100644 --- a/packages/shared/components/email-input/index.tsx +++ b/packages/shared/components/email-input/index.tsx @@ -24,6 +24,6 @@ // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode -export { TValidate } from "./EmailInput.types"; +export type { TValidate } from "./EmailInput.types"; export { EmailInput } from "./EmailInput"; diff --git a/packages/shared/components/password-input/index.tsx b/packages/shared/components/password-input/index.tsx index 7ee5a54c04..89d6aa50e1 100644 --- a/packages/shared/components/password-input/index.tsx +++ b/packages/shared/components/password-input/index.tsx @@ -24,6 +24,6 @@ // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode -export { PasswordInputHandle } from "./PasswordInput.types"; +export type { PasswordInputHandle } from "./PasswordInput.types"; export { PasswordInput } from "./PasswordInput";