UNPKG

xobuilder-extractor

Version:

> **A sophisticated web application that converts HTML and CSS to JSON layout through an intelligent multi-step flow process with AI validation.**

12 lines (11 loc) 473 B
import { HTMLElementTree } from '../application/use-case/html-parse.use-case'; export interface HtmlParsedResult { values: Record<string, string | string[]>; parsed: HTMLElementTree; } /** * This function is used to extract the values from the parsed HTML object. * @param htmlParsed - The parsed HTML object * @returns An object containing the values and the parsed HTML object */ export declare const getValueHtmlParse: (htmlParsed: any) => HtmlParsedResult;