1export interface AppComNode { 2 type: string 3 key?: string 4 props?: Record<string, any> 5 children?: Array<AppComNode> 6}