UNPKG

@agentic-intelligence/dom-engine

Version:

Agentic DOM Intelligence - A lightweight TypeScript library for DOM analysis and manipulation, designed for web automation and AI agents

12 lines 432 B
/** * Click action functionality */ import { ActionResult } from '../types'; /** * Executes click action on an element using multiple methods * @param element - Element to click * @param agenticPurposeId - Unique identifier of the element * @returns ActionResult with execution result */ export declare function executeClickAction(element: Element, agenticPurposeId: string): ActionResult; //# sourceMappingURL=click.d.ts.map