6 lines
243 B
TypeScript
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];
|
|
};
|