diff --git a/src/types.ts b/src/types.ts index 650c55bb..9f9deb49 100644 --- a/src/types.ts +++ b/src/types.ts @@ -497,6 +497,8 @@ export type InputGuesserProps = Omit< 'component' > & { transformEnum?: (value: string | number) => string | number; + // don't know why this TextInputProps doesn't surface in the final type, re-adding it here + multiline?: boolean; } & Pick< ReferenceInputProps | ReferenceArrayInputProps, 'filter' | 'page' | 'perPage' | 'sort' | 'enableGetChoices'