Shared:Components: change import types

This commit is contained in:
Darya Umrikhina 2024-08-12 10:53:00 +04:00
parent 2e6a7a25fd
commit cc3fc541d6
2 changed files with 2 additions and 2 deletions

View File

@ -24,6 +24,6 @@
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // 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 // 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"; export { EmailInput } from "./EmailInput";

View File

@ -24,6 +24,6 @@
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // 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 // 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"; export { PasswordInput } from "./PasswordInput";