Files
lowcode-frontend/src/type/IComponent.ts

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
}