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.**
10 lines (9 loc) • 385 B
TypeScript
import { StyleEntity } from '../../../domains/entities/style.entity';
interface StylesEEPProps {
styles: Record<string, StyleEntity.StyleFull>;
data: Record<string, StyleEntity.StyleFieldData>;
hasBackground?: "image" | "video";
ignoreKeys?: string[];
}
export declare const stylesEEP: ({ styles, data, hasBackground, ignoreKeys, }: StylesEEPProps) => void;
export {};