UNPKG

payloadcms-import-export-plugin

Version:

A comprehensive Payload CMS plugin that enables seamless import and export of collection data with support for CSV and JSON formats, featuring advanced field mapping, duplicate handling, and batch processing capabilities.

8 lines (7 loc) 254 B
import { type FlattenedField } from 'payload'; import type { ToCSVFunction } from '../types.js'; type Args = { fields: FlattenedField[]; }; export declare const getCustomFieldFunctions: ({ fields }: Args) => Record<string, ToCSVFunction>; export {};