@firecms/core
Version:
Awesome Firebase/Firestore-based headless open-source CMS
13 lines (12 loc) • 631 B
TypeScript
import React from "react";
import { EntityReference, FieldProps } from "../../types";
type ArrayOfReferencesFieldProps = FieldProps<EntityReference[]>;
/**
* This field allows selecting multiple references.
*
* 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 ArrayOfReferencesFieldBinding({ propertyKey, value, error, showError, disabled, isSubmitting, minimalistView: minimalistViewProp, property, includeDescription, setValue, setFieldValue }: ArrayOfReferencesFieldProps): React.JSX.Element;
export {};