@aziontech/opennextjs-azion
Version:
Azion builder for next apps
23 lines (22 loc) • 520 B
TypeScript
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[];