@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
16 lines • 445 B
TypeScript
import type { StrapiCommand } from '../../types';
interface CmdOptions {
file?: string;
pretty?: boolean;
}
/**
* Will dump configurations to a file or stdout
* @param {string} file filepath to use as output
*/
declare const action: ({ file: filePath, pretty }: CmdOptions) => Promise<never>;
/**
* `$ strapi configuration:dump`
*/
declare const command: StrapiCommand;
export { action, command };
//# sourceMappingURL=dump.d.ts.map