/* * @Author: your name * @Date: 2022-04-11 15:28:14 * @Description: * @FilePath: /zl-large-screen/src/type/largeScreenLayer.ts */ 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[]; }