Leon4gr45's picture
Upload folder using huggingface_hub (part 2)
391c43e verified
Raw
History Blame Contribute Delete
340 Bytes
export interface SemanticBlock {
id: string;
name: string;
category: 'Sections' | 'Content' | 'Interactive' | 'Data';
description: string;
wireframeHtml: string;
}
export interface PlacedBlock {
blockId: string;
placementId: string;
domPath: string;
position: 'before' | 'after';
page: string;
htmlContext: string;
}