ccguard
Version:
Automated enforcement of net-negative LOC, complexity constraints, and quality standards for Claude code
9 lines • 384 B
TypeScript
import { Command, CommandRegistry as ICommandRegistry } from './types';
export declare class CommandRegistry implements ICommandRegistry {
private commands;
register(command: Command): void;
get(name: string): Command | undefined;
getAll(): Command[];
static createWithDefaults(commands: Command[]): CommandRegistry;
}
//# sourceMappingURL=CommandRegistry.d.ts.map