14 lines
238 B
TypeScript
14 lines
238 B
TypeScript
export interface IComponent {
|
|
type: string;
|
|
name: string;
|
|
id: string;
|
|
text:string;
|
|
designer: string;
|
|
props: JSON;
|
|
style: string;
|
|
class: string;
|
|
events:JSON;
|
|
orchestrations:JSON;
|
|
version:string;
|
|
loop:JSON
|
|
} |