UNPKG

@strapi/strapi

Version:

An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MySQL, MariaDB, PostgreSQL, SQLite

22 lines 630 B
import { engine as engineDataTransfer } from '@strapi/data-transfer'; interface CmdOptions { file?: string; encrypt?: boolean; verbose?: boolean; key?: string; compress?: boolean; only?: (keyof engineDataTransfer.TransferGroupFilter)[]; exclude?: (keyof engineDataTransfer.TransferGroupFilter)[]; throttle?: number; maxSizeJsonl?: number; } /** * Export command. * * It transfers data from a local Strapi instance to a file * * @param {ExportCommandOptions} opts */ declare const _default: (opts: CmdOptions) => Promise<void>; export default _default; //# sourceMappingURL=action.d.ts.map