Files
nanobot-ts/src/cli/types.ts
2026-03-13 14:52:51 -06:00

5 lines
185 B
TypeScript

import type { Command } from 'commander';
import type { Config } from '../config/types.ts';
export type CommandHandler = (program: Command, config: Config, workspace: string) => void;