This commit is contained in:
lhj
2024-09-22 01:28:02 +08:00
parent 309e045720
commit 2dccc36d32
128 changed files with 8072 additions and 3243 deletions

2
src/type/IComponent.js Normal file
View File

@ -0,0 +1,2 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });

View File

@ -1,10 +1,11 @@
export interface IList {
export interface IComponent {
type: string;
name: string;
id: string;
designer: JSON;
text:string;
designer: string;
props: JSON;
style: string;
class: string;
children: IList[];
children: IComponent[];
}