UNPKG

payload

Version:

Node, React and MongoDB Headless CMS and Application Framework

14 lines 465 B
import type { SanitizedCollectionConfig } from '../../../../collections/config/types'; import type { FileSizes } from '../../../../uploads/types'; import type { Data } from '../../forms/Form/types'; export type Props = { canEdit?: boolean; collection: SanitizedCollectionConfig; doc: Data & { sizes?: FileSizes; }; handleRemove?: () => void; hasImageSizes?: boolean; imageCacheTag?: string; }; //# sourceMappingURL=types.d.ts.map