export interface ILargeScreenSceneProps { scenes?: ITree[]; sceneSelectId?: string[]; sceneExpandIds?: string[]; sceneId?: string; scenesEvent?: (type: string, props?: any) => void; uiStateOn?: boolean; } export interface ILargeScreenSceneState { scenes?: ITree[]; sceneSelectId?: string[]; sceneExpandIds?: string[]; sceneId?: string; scenesEvent?: (type: string, props?: any) => void; uiStateOn?: boolean; } export interface ITree { title: string; key: string; selectable?: boolean; children?: ITree[]; }