5 lines
185 B
TypeScript
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;
|