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) 330 B
import type { Config, TaskConfig } from 'payload'; import type { ImportExportPluginConfig } from '../types.js'; import type { Export } from './createExport.js'; export declare const getCreateCollectionExportTask: (config: Config, pluginConfig?: ImportExportPluginConfig) => TaskConfig<{ input: Export; output: object; }>;