CoolFace
Apppublic

Leon4gr45/builder

sourceHugging Facemitupdated 2d agoView on Hugging Face
0likes
types.ts17 linesDownload Raw Back to semantic-blocks
1export interface SemanticBlock {2  id: string;3  name: string;4  category: 'Sections' | 'Content' | 'Interactive' | 'Data';5  description: string;6  wireframeHtml: string;7}8 9export interface PlacedBlock {10  blockId: string;11  placementId: string;12  domPath: string;13  position: 'before' | 'after';14  page: string;15  htmlContext: string;16}17