| 32 | export type { Command, OptionDef } from './command'; |
| 33 | |
| 34 | interface CommandNode { |
| 35 | command?: Command; |
| 36 | children: Map<string, CommandNode>; |
| 37 | } |
| 38 | |
| 39 | class CommandRegistry { |
| 40 | private root: CommandNode = { children: new Map() }; |
nothing calls this directly
no outgoing calls
no test coverage detected