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) • 1.13 kB
TypeScript
import { analyticElementProperties } from './application/dto/aep';
import { expandElementProperties } from './application/dto/eep';
import { Html2XojlConvertedDatasetFlow } from './application/flow/html-2-xojl-dataset.flow';
import { Html2XojlConvertedFlow } from './application/flow/html-2-xojl.flow';
import { getStylesUC as getStylesV2 } from './application/use-case/get-styles.use-case';
import { parseHtmlUC as parseHtmlV2 } from './application/use-case/html-parse.use-case';
import { minifyHtmlCssStructureUC } from './application/use-case/minify-html-css.use-case';
import { selectorCleaner } from './utils/selectorCleaner';
import { shortGenDataFlow } from './application/flow/short-gen-data.flow';
export type { RawDataEEPV2, TrackElementData, } from './domains/entities/general.entity';
export { expandElementProperties as getEEP, getStylesV2 as getStyles, analyticElementProperties as getStylesAEP, Html2XojlConvertedFlow as Html2XojlConverted, Html2XojlConvertedDatasetFlow as Html2XojlConvertedDataset, minifyHtmlCssStructureUC as minifyHtmlCssStructure, parseHtmlV2 as parseHtml, selectorCleaner, shortGenDataFlow, };