mirror of
https://github.com/strapi/strapi.git
synced 2025-07-20 23:47:46 +00:00
23 lines
471 B
TypeScript
23 lines
471 B
TypeScript
![]() |
interface BuildArgs {
|
||
|
optimize?: boolean;
|
||
|
}
|
||
|
|
||
|
declare const build: (args: BuildArgs) => Promise<void>;
|
||
|
|
||
|
interface CleanArgs {
|
||
|
appDir: string;
|
||
|
buildDestDir: string;
|
||
|
}
|
||
|
|
||
|
declare const clean: (args: CleanArgs) => Promise<void>;
|
||
|
|
||
|
interface WatchAdminArgs {
|
||
|
browser?: string | boolean;
|
||
|
open?: boolean;
|
||
|
polling?: boolean;
|
||
|
}
|
||
|
|
||
|
declare const watchAdmin: (args: WatchAdminArgs) => Promise<void>;
|
||
|
|
||
|
export { build, BuildArgs, clean, CleanArg, watchAdmin, WatchAdminArgs };
|