@firecms/core
Version:
Awesome Firebase/Firestore-based headless open-source CMS
12 lines (11 loc) • 510 B
TypeScript
import { FieldProps } from "../../types";
type DateTimeFieldProps = FieldProps<Date>;
/**
* Field that allows selecting a date
*
* 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 DateTimeFieldBinding({ propertyKey, value, setValue, autoFocus, error, showError, disabled, touched, property, includeDescription }: DateTimeFieldProps): import("react/jsx-runtime").JSX.Element;
export {};