/** * Browser Command Handlers * * Re-exports all command handler functions. */ export { handleGetA11y } from './a11y.js'; export { handleQueryDOM } from './dom.js'; export { handleExecJS } from './exec.js'; export { handleGetLogs } from './logs.js'; export { extractDocumentOutline, handleGetOutline, outlineToMarkdown } from './outline.js'; export { extractPageSchema, handleGetSchema, schemaToMarkdown } from './schema.js'; export { handleRequestScreenshot, handleScreenshot } from './screenshot.js'; export { handleGetVitals } from './vitals.js'; //# sourceMappingURL=index.d.ts.map