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

17 lines 411 B
import type { StrapiCommand } from '../../types'; interface CmdOptions { email?: string; password?: string; firstname?: string; lastname?: string; } /** * Create new admin user */ declare const action: (cmdOptions?: CmdOptions) => Promise<void>; /** * `$ strapi admin:create-user` */ declare const command: StrapiCommand; export { action, command }; //# sourceMappingURL=create-user.d.ts.map