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