You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are you submitting a bug report or a feature request?
Feature request
What is the current behavior?
Missing public type FieldArrayRenderProps, instead of that now I need to import from private place which can be changed in any version
importtype{FieldArrayRenderProps}from'react-final-form-arrays/dist/types';// <-- this
...
typeFinalFormArrayFieldType=$PropertyType<FieldArrayRenderProps,'fields'>
What is the expected behavior?
importtype{FieldArrayRenderProps}from'react-final-form-arrays';// <-- expect this
...
typeFinalFormArrayFieldType=$PropertyType<FieldArrayRenderProps,'fields'>
The text was updated successfully, but these errors were encountered:
Are you submitting a bug report or a feature request?
Feature request
What is the current behavior?
Missing public type
FieldArrayRenderProps
, instead of that now I need to import from private place which can be changed in any versionWhat is the expected behavior?
The text was updated successfully, but these errors were encountered: