UNPKG

@aziontech/opennextjs-azion

Version:
23 lines (22 loc) 520 B
export type Arguments = ({ command: "build"; skipNextBuild: boolean; minify: boolean; } | { command: "preview" | "deploy"; passthroughArgs: string[]; assetsDir: string; cacheDir: string; bundlerVersion: string; } | { command: "populateCache"; assetsDir: string; cacheDir: string; } | { command: "populateAssets"; assetsDir: string; }) & { outputDir?: string; }; export declare function getArgs(): Arguments; export declare function getPassthroughArgs(): string[];