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 467 B
/** * Action executor for DOM interactions */ import { Action, ActionsResult, DOMContext } from '../types'; /** * Executes multiple actions on DOM elements * @param actions - Array of actions to execute * @param context - DOM context (optional, defaults to current window/document) * @returns Object with execution results */ export declare function executeActions(actions: Action[], context?: DOMContext): ActionsResult; //# sourceMappingURL=executor.d.ts.map