mono/packages/commons/dist/commands/each.d.ts
2026-01-27 08:26:13 +01:00

5 lines
311 B
TypeScript

import * as CLI from 'yargs';
import { ZodObject } from 'zod';
export declare const registerCommand: (cli: CLI.Argv, name: any, description: any, options: any, zodSchema: () => ZodObject<any>, main: (opts: any, argv: any) => Promise<any>) => any;
export declare const registerCommands: (cli: CLI.Argv) => void;