17 lines
297 B
TypeScript
17 lines
297 B
TypeScript
export interface IComponent {
|
|
type: string;
|
|
name: string;
|
|
id: string;
|
|
text:string;
|
|
designer: JSON;
|
|
props: JSON;
|
|
style: string;
|
|
class: string;
|
|
events:JSON;
|
|
slots:IComponent[];
|
|
orchestrations:JSON;
|
|
version:string;
|
|
loop:JSON;
|
|
disable: boolean,
|
|
visible: boolean,
|
|
} |