UNPKG

@aziontech/opennextjs-azion

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