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

14 lines 401 B
import type { StrapiCommand } from '../../types'; interface CmdOptions { debug?: boolean; silent?: boolean; verbose?: boolean; outDir?: string; } declare const action: ({ debug, silent, verbose, outDir }: CmdOptions) => Promise<void>; /** * `$ strapi ts:generate-types` */ declare const command: StrapiCommand; export { action, command }; //# sourceMappingURL=generate-types.d.ts.map