UNPKG

@firecms/core

Version:

Awesome Firebase/Firestore-based headless open-source CMS

14 lines (13 loc) 593 B
import React from "react"; import { FieldProps } from "../../types"; interface TextFieldBindingProps<T extends string | number> extends FieldProps<T> { allowInfinity?: boolean; } /** * Generic text field. * 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 TextFieldBinding<T extends string | number>({ propertyKey, value, setValue, error, showError, disabled, autoFocus, property, includeDescription, size }: TextFieldBindingProps<T>): React.JSX.Element; export {};