@clscripts/next
Version:
nextjs cli clscripts implementation
16 lines • 478 B
TypeScript
import { Executable } from '@clscripts/cl-common';
export interface NextOpts {
mode: NextRunMode;
turbo?: boolean;
}
export declare class Next implements Executable {
packageExecutable: string;
mode: NextRunMode;
turbo?: boolean;
constructor(opts: NextOpts);
get command(): string;
get modeArg(): NextRunMode;
get turboArg(): "--turbo" | "";
}
export type NextRunMode = 'start' | 'dev' | 'build' | 'lint';
//# sourceMappingURL=script.d.ts.map