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

13 lines 461 B
/** * Type action functionality */ import { ActionResult } from '../types'; /** * Executes type action on an element * @param element - Element to type into * @param value - Text value to type * @param agenticPurposeId - Unique identifier of the element * @returns ActionResult with execution result */ export declare function executeTypeAction(element: Element, value: string, agenticPurposeId: string): ActionResult; //# sourceMappingURL=type.d.ts.map