UNPKG

@firecms/core

Version:

Awesome Firebase/Firestore-based headless open-source CMS

11 lines (10 loc) 528 B
import React from "react"; 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>): React.JSX.Element;