6 lines
226 B
TypeScript
6 lines
226 B
TypeScript
|
import type { getValidatedArgs } from './get-validated-args';
|
||
|
export type CliCommand = (args: ReturnType<typeof getValidatedArgs>) => void;
|
||
|
export declare const commands: {
|
||
|
[command: string]: () => Promise<CliCommand>;
|
||
|
};
|