File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1- export { default as useFormState } from './useFormState' ;
1+ export {
2+ default as useFormState ,
3+ FormTextInputProps ,
4+ FormRawProps ,
5+ } from './useFormState' ;
26export { default as Form } from './Form' ;
37export { default as ScrollView } from './ScrollView' ;
48export type { ErrorUtility , BooleanUtility } from './types' ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ import type { SetStateAction } from 'react';
2525import useRefState from './useRefState' ;
2626import { defaultLocale , getTranslation } from './translations/utils' ;
2727
28- type FormTextInputProps = {
28+ export type FormTextInputProps = {
2929 testID : string ;
3030 value : string ;
3131 onBlur : TextInputProps [ 'onBlur' ] ;
@@ -43,7 +43,7 @@ type FormTextInputProps = {
4343 label ?: string ;
4444} ;
4545
46- type FormRawProps < V > = {
46+ export type FormRawProps < V > = {
4747 testID : string ;
4848 value : V ;
4949 onChange : ( v : V ) => void ;
You can’t perform that action at this time.
0 commit comments