Files
Webklar.com/node_modules/next/dist/lib/command-args.d.ts
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

6 lines
243 B
TypeScript

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