UNPKG

@presidio-dev/factifai-agent

Version:

An AI powered browser automation testing agent powered by LLMs.

16 lines 453 B
/** * Utility functions for XML formatting */ /** * Converts an array of element objects to XML format * @param elements Array of elements with labelNumber and coordinates properties * @returns XML string representation of the elements */ export declare function convertElementsToXml(elements: Array<{ labelNumber: string; coordinates: { x: number; y: number; }; }>): string; //# sourceMappingURL=xml-formatter.d.ts.map