firejsx
Version:
The React Framework for SSB, SSR and Serverless technologies
23 lines (22 loc) • 600 B
TypeScript
export interface Args {
"--pro"?: boolean;
"--export"?: boolean;
"--export-fly"?: boolean;
"--disk"?: boolean;
"--ssr"?: boolean;
"--prefix"?: string;
"--static-prefix"?: string;
"--port"?: number;
"--addr"?: string;
"--disable-gzip"?: boolean;
"--conf"?: string;
"--verbose"?: boolean;
"--log-mode"?: "silent" | "plain";
"--disable-plugins"?: boolean;
"--pages"?: string;
"--dist"?: string;
"--fly"?: string;
_?: string[];
}
export declare function getArgs(): Args;
export declare function parseArgs(args: Args): Args | never;