browser-debugger-cli
Version:
DevTools telemetry in your terminal. For humans and agents. Direct WebSocket to Chrome's debugging port.
14 lines • 441 B
TypeScript
/**
* Worker Config Parser
*
* Parses and validates worker configuration from command-line arguments.
*/
import type { WorkerConfig } from '../../daemon/worker/types.js';
/**
* Parse worker configuration from process arguments.
*
* @returns Normalized worker configuration
* @throws Error if configuration is invalid or missing
*/
export declare function parseWorkerConfig(): WorkerConfig;
//# sourceMappingURL=workerConfig.d.ts.map