browser-debugger-cli
Version:
DevTools telemetry in your terminal. For humans and agents. Direct WebSocket to Chrome's debugging port.
18 lines • 583 B
TypeScript
/**
* Accessibility tree inspection commands for semantic element queries.
*
* Provides three core commands:
* - tree: Dump full accessibility tree
* - query: Search by role/name/description patterns
* - describe: Get A11y properties for CSS selector
*
* Uses IPC/callCDP pattern for consistency with other DOM commands.
*/
import type { Command } from 'commander';
/**
* Register accessibility commands under 'bdg dom a11y'
*
* @param domCmd - Parent DOM command
*/
export declare function registerA11yCommands(domCmd: Command): void;
//# sourceMappingURL=a11y.d.ts.map