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

16 lines 495 B
import type { CLIContext } from '../cli/types'; interface DevelopOptions extends CLIContext { /** * Which bundler to use for building. * * @default webpack */ bundler?: 'webpack' | 'vite'; polling?: boolean; open?: boolean; watchAdmin?: boolean; } declare const develop: ({ cwd, polling, logger, tsconfig, watchAdmin, ...options }: DevelopOptions) => Promise<void>; export { develop }; export type { DevelopOptions }; //# sourceMappingURL=develop.d.ts.map