securityos/node_modules/next/dist/lib/command-args.d.ts

6 lines
248 B
TypeScript

import type { getValidatedArgs } from './get-validated-args';
export type CliCommand = (args: ReturnType<typeof getValidatedArgs>) => void;
export declare const commandArgs: {
[command: string]: () => Parameters<typeof getValidatedArgs>[0];
};