Leon4gr45/builder
0
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 