From 15d31c500f55c55e777af1eb8cb8b4bf815aed9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibaut=20Mar=C3=A9chal?= Date: Wed, 3 Jun 2026 16:23:54 +0200 Subject: [PATCH] fix: export WrapperProps to fix TS2883 with declaration emit --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 41eba1a4..7c1129cd 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,7 +1,7 @@ export { addValidationRule, validationRules } from './validationRules'; -import { withFormsy, type PassDownProps, type InjectedProps } from './withFormsy'; +import { withFormsy, type PassDownProps, type InjectedProps, type WrapperProps } from './withFormsy'; import { Formsy } from './Formsy'; export { withFormsy }; -export type { PassDownProps as FormsyInjectedProps, InjectedProps }; +export type { PassDownProps as FormsyInjectedProps, InjectedProps, WrapperProps }; export default Formsy;