UNPKG

@firecms/core

Version:

Awesome Firebase/Firestore-based headless open-source CMS

11 lines (10 loc) 459 B
import { Entity, EntityStatus, EnumValues } from "../../types"; export declare function CustomIdField<M extends Record<string, any>>({ customId, entityId, status, onChange, error, entity, loading }: { customId?: boolean | EnumValues | "optional"; entityId?: string; status: EntityStatus; onChange: (id?: string) => void; error: boolean; entity: Entity<M> | undefined; loading: boolean; }): import("react/jsx-runtime").JSX.Element;