refactor
This commit is contained in:
2
src/type/IComponent.js
Normal file
2
src/type/IComponent.js
Normal file
@ -0,0 +1,2 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
@ -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[];
|
||||
}
|
||||
Reference in New Issue
Block a user