UNPKG

@firecms/core

Version:

Awesome Firebase/Firestore-based headless open-source CMS

10 lines (9 loc) 523 B
import { FieldProps } from "../../types"; /** * Array field used for custom * * This is one of the internal components that get mapped natively inside forms * and tables to the specified properties. * @group Form fields */ export declare function ArrayCustomShapedFieldBinding<T extends Array<any>>({ propertyKey, value, error, showError, isSubmitting, setValue, minimalistView: minimalistViewProp, property, includeDescription, context, disabled }: FieldProps<T, any, any>): import("react/jsx-runtime").JSX.Element;