UNPKG

@firecms/core

Version:

Awesome Firebase/Firestore-based headless open-source CMS

9 lines (8 loc) 404 B
import React from "react"; import { FieldProps } from "../../types"; /** * Field that allows edition of key value pairs. * * @group Form fields */ export declare function KeyValueFieldBinding({ propertyKey, value, showError, error, disabled, property, setValue, minimalistView, includeDescription, underlyingValueHasChanged, autoFocus, context }: FieldProps<Record<string, any>>): React.JSX.Element;