browser-debugger-cli
Version:
DevTools telemetry in your terminal. For humans and agents. Direct WebSocket to Chrome's debugging port.
11 lines • 355 B
TypeScript
import type { Command } from 'commander';
/**
* Command registration function type
*/
export type CommandRegistrar = (program: Command) => void;
/**
* Registry of all CLI commands with grouping
* Order matters: groups organize commands in help output
*/
export declare const commandRegistry: CommandRegistrar[];
//# sourceMappingURL=commands.d.ts.map