libreria-astro-lefebvre
Version:
Librería de componentes Astro, React y Vue para Lefebvre
17 lines • 415 B
text/typescript
export interface ComponentMetadata {
name: string;
description: string;
framework: 'Astro' | 'Vue' | 'React';
component_name: string,
priority?: number;
tags?: string[];
[key: string]: any; // para extensibilidad
fields?: Array<{
name: string;
type: string;
label: string;
mandatory?: boolean;
options?: (string | number)[];
options_labels?: string[];
}>;
}