refactor
This commit is contained in:
11
src/type/IComponent.ts
Normal file
11
src/type/IComponent.ts
Normal file
@ -0,0 +1,11 @@
|
||||
export interface IComponent {
|
||||
type: string;
|
||||
name: string;
|
||||
id: string;
|
||||
text:string;
|
||||
designer: string;
|
||||
props: JSON;
|
||||
style: string;
|
||||
class: string;
|
||||
children: IComponent[];
|
||||
}
|
||||
Reference in New Issue
Block a user